Skip to content

Create build_mmvii.yml #1

Create build_mmvii.yml

Create build_mmvii.yml #1

Workflow file for this run

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