Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Apr 11, 2024
1 parent 593c2ee commit 02dbdc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
ctest -V -C Release
cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
- name: Build-Linux-x64
if: startsWith(matrix.os, 'ubuntu')
if: ${{ matrix.platform == 'linux-x64' }}
run: |
mkdir build
cd build
Expand All @@ -58,7 +58,7 @@ jobs:
ctest -V -C Release
cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
- name: Build-Linux-aarch64
if: startsWith(matrix.os, 'ubuntu')
if: ${{ matrix.platform == 'linux-aarch64' }}
run: |
mkdir build
cd build
Expand Down

0 comments on commit 02dbdc0

Please sign in to comment.