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
1 changed files with 3 additions and 2 deletions

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