We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 593c2ee commit 02dbdc0Copy full SHA for 02dbdc0
.github/workflows/build.yml
@@ -49,7 +49,7 @@ jobs:
49
ctest -V -C Release
50
cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
51
- name: Build-Linux-x64
52
- if: startsWith(matrix.os, 'ubuntu')
+ if: ${{ matrix.platform == 'linux-x64' }}
53
run: |
54
mkdir build
55
cd build
@@ -58,7 +58,7 @@ jobs:
58
59
60
- name: Build-Linux-aarch64
61
+ if: ${{ matrix.platform == 'linux-aarch64' }}
62
63
64
0 commit comments