Create build_mmvii.yml #1
Workflow file for this run
This file contains 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: Build Bin MMVII | |
on: | |
push: | |
branches: | |
- 'cm-build-*' | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Qt | |
run: sudo apt install qtbase5-dev | |
- name: Configure CMake | |
run: cmake -B build -DWITH_CCACHE=OFF -DCMAKE_BUILD_TYPE=Release -DWITH_QT5=ON | |
- name: Build | |
run: make -C build install -j 4 | |
- name: Configure CMake MMVII | |
run: cmake -S MMVII -B MMVII/build -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build MMVII/build -j 4 -- -k0 | |