2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-04 10:55:35 +00:00

GitHub Actions: Fix macOS configure cmake step

This commit is contained in:
Luke Street 2021-03-15 11:48:59 -04:00
parent 2b1ee17168
commit 268e7d143f

View File

@ -102,8 +102,9 @@ jobs:
- name: Configure CMake
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DURDE_VECTOR_ISA=sse41 \
-DURDE_DLPACKAGE=urde-$GITHUB_RUN_NUMBER-macos-x86_64-sse41
run: |
cmake $GITHUB_WORKSPACE -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DURDE_VECTOR_ISA=sse41 \
-DURDE_DLPACKAGE=urde-$GITHUB_RUN_NUMBER-macos-x86_64-sse41
- name: Build
working-directory: ${{github.workspace}}/build