Skip to content

Commit

Permalink
Update build_mmvii.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
meynardc authored Dec 8, 2023
1 parent 77cb525 commit 217fb95
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/build_mmvii.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,27 @@ jobs:
- name: Install Qt
run: sudo apt install qtbase5-dev

- name: Configure CMake
- name: Configure CMake for mm3d
run: cmake -B build -DWITH_CCACHE=OFF -DCMAKE_BUILD_TYPE=Release -DWITH_QT5=ON

- name: Build
- name: Build elise.lib and mm3d
run: make -C build install -j 4

- name: Configure CMake MMVII
- name: Configure CMake for MMVII
run: cmake -S MMVII -B MMVII/build -DCMAKE_BUILD_TYPE=Release

- name: Build
run: cmake --build MMVII/build -j 4 -- -k0
- name: Build MMVII first stage
run: cmake --build MMVII/build -j 4

- name: Create generated code
run: MMVII/bin/MMVII GenCodeSymDer

- name: Build MMVII second stage
run: cmake --build MMVII/build -j 4

- name: Run MMVII Tests
run: MMVII/bin/MMVII Bench 1




0 comments on commit 217fb95

Please sign in to comment.