Skip to content

Commit

Permalink
Create build_mmvii.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
meynardc authored Dec 8, 2023
1 parent 999bb13 commit 77cb525
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build_mmvii.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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

0 comments on commit 77cb525

Please sign in to comment.