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 360ee1f commit 8777a95Copy full SHA for 8777a95
.github/workflows/ci.yml
@@ -35,7 +35,7 @@ jobs:
35
36
# Prep
37
- name: Prep Linux
38
- if: matrix.os == 'ubuntu-latest'
+ if: startsWith(matrix.os, 'ubuntu-')
39
run: |
40
sudo apt-get update
41
sudo apt-get install -y ninja-build
@@ -71,14 +71,9 @@ jobs:
71
72
# Build
73
- name: Build (Unix)
74
- if: matrix.os != 'windows-latest'
75
- run: cmake --build build-Release --parallel
76
-
77
- # Package
78
- - name: CPack (Unix)
79
if: matrix.os != 'windows-latest'
80
run: cmake --build build-Release --target package --parallel
81
- continue-on-error: true
+
82
83
# Artifacts
84
- name: Upload packages
0 commit comments