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 11, 2023
1 parent 11c8fb3 commit f3e2df5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_mmvii.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: cmake -B build -DWITH_CCACHE=OFF -DCMAKE_BUILD_TYPE=Release -DWITH_QT5=ON

- name: Cache mm3d build
id: cache-mm3d
id: cache-mm3d-linux
uses: actions/cache@v3
with:
path: |
Expand All @@ -29,7 +29,7 @@ jobs:
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' }}
- if: ${{ steps.cache-mm3d-linux.outputs.cache-hit != 'true' }}
name: Build elise.lib and mm3d
run: make -C build install -j 4

Expand Down Expand Up @@ -65,16 +65,16 @@ jobs:
run: cmake -B build -DWITH_CCACHE=OFF -DCMAKE_BUILD_TYPE=Release -DWITH_QT5=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}

- name: Cache mm3d build
id: cache-mm3d
id: cache-mm3d-windows
uses: actions/cache@v3
with:
path: |
lib/libelise.a
lib/libANN.a
bin/mm3d
lib/elise.lib
lib/ANN.lib
bin/mm3d.exe
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' }}
- if: ${{ steps.cache-mm3d-windows.outputs.cache-hit != 'true' }}
name: Build elise.lib and mm3d
run: cmake --build build --config Release --target INSTALL -j 4

Expand Down

0 comments on commit f3e2df5

Please sign in to comment.