Skip to content

Commit 02dbdc0

Browse files
committed
fix compile
1 parent 593c2ee commit 02dbdc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ctest -V -C Release
5050
cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
5151
- name: Build-Linux-x64
52-
if: startsWith(matrix.os, 'ubuntu')
52+
if: ${{ matrix.platform == 'linux-x64' }}
5353
run: |
5454
mkdir build
5555
cd build
@@ -58,7 +58,7 @@ jobs:
5858
ctest -V -C Release
5959
cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
6060
- name: Build-Linux-aarch64
61-
if: startsWith(matrix.os, 'ubuntu')
61+
if: ${{ matrix.platform == 'linux-aarch64' }}
6262
run: |
6363
mkdir build
6464
cd build

0 commit comments

Comments
 (0)