Skip to content

Commit 428d639

Browse files
committed
?!?
1 parent a408ada commit 428d639

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,22 @@ jobs:
154154
if: matrix.static-analysis == 'sonar'
155155
uses: sonarsource/sonarcloud-github-c-cpp@v2
156156

157-
- name: Build and install QtKeychain
157+
- name: Build and install QtKeychain (mac)
158+
if: startsWith(matrix.os, 'macos')
158159
run: |
159160
cd ..
160161
git clone -b v0.13.0 https://github.com/frankosterfeld/qtkeychain.git
161162
cmake -S qtkeychain -B qtkeychain/build -DBUILD_WITH_QT6=ON -DBUILD_TRANSLATIONS=OFF $CMAKE_ARGS
162163
cmake --build qtkeychain/build --target install
163164
165+
- name: Build and install QtKeychain (not mac)
166+
if: "!startsWith(matrix.os, 'macos')"
167+
run: |
168+
cd ..
169+
git clone -b v0.15.0 https://github.com/frankosterfeld/qtkeychain.git
170+
cmake -S qtkeychain -B qtkeychain/build -DBUILD_WITH_QT6=ON -DBUILD_TRANSLATIONS=OFF $CMAKE_ARGS
171+
cmake --build qtkeychain/build --target install
172+
164173
- name: Build and install Corrosion
165174
run: |
166175
cd ..

0 commit comments

Comments
 (0)