Skip to content

Update build_mmvii.yml #13

Update build_mmvii.yml

Update build_mmvii.yml #13

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 for mm3d
run: cmake -B build -DWITH_CCACHE=OFF -DCMAKE_BUILD_TYPE=Release -DWITH_QT5=ON
- name: Cache mm3d build
id: cache-mm3d
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: |
lib/libelise.a
lib/libANN.a
bin/mm3d
key: ${{ runner.os }}-build-mm3d-${{ hashFiles('src/**/*.cpp','src/**/*.h','include/**/*.h','!src/util/GIT_defines.cpp') }}
- if: ${{ steps.cache-mm3d.outputs.cache-hit != 'true' }}
name: Build elise.lib and mm3d
run: make -C build install -j 4
- name: Configure CMake for MMVII
run: cmake -S MMVII -B MMVII/build -DCMAKE_BUILD_TYPE=Release
- name: Build MMVII first stage, build base code
run: cmake --build MMVII/build -j 4
- name: Generate codesfor Symbolic Derivatives
run: MMVII/bin/MMVII GenCodeSymDer
- name: Build MMVII second stage, build generated code
run: cmake --build MMVII/build -j 4
- name: Run MMVII Tests
working-directory: ./MMVII/bin
run: ./MMVII Bench 1