Linux #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: | |
workflow_dispatch | |
jobs: | |
linux-native-build-run: | |
runs-on: ubuntu-latest | |
steps: | |
# Toolchain + git | |
- name: Update | |
run: sudo apt update | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install build tools | |
run: python -m pip install meson ninja | |
- uses: actions/checkout@v4 | |
- name: Initialize git submodules | |
run: git submodule update --init --recursive | |
# Native meson | |
- name: Setup build directory meson native | |
run: meson setup build-meson-native | |
- name: Build application meson native | |
run: ninja -C build-meson-native | |
- name: Start application meson | |
run: ./build-meson-native/codeorb --help | |