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 55d1f3a commit db19ebaCopy full SHA for db19eba
.github/workflows/ci.yml
@@ -23,7 +23,14 @@ jobs:
23
- name: Checkout code
24
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
25
26
+ - name: Build for slow machine
27
+ if: matrix.os == 'macos-14'
28
+ run: |
29
+ cmake -S . -B "${{ env.BUILD_DIR }}" -DNSYNC_TESTING_SLOW_MACHINE=ON
30
+ cmake --build "${{ env.BUILD_DIR }}"
31
+
32
- name: Build
33
+ if: matrix.os != 'macos-14'
34
run: |
35
cmake -S . -B "${{ env.BUILD_DIR }}"
36
cmake --build "${{ env.BUILD_DIR }}"
0 commit comments