Skip to content

Commit db19eba

Browse files
committed
workflow: enable SLOW_MACHINE for MacOS14
1 parent 55d1f3a commit db19eba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ jobs:
2323
- name: Checkout code
2424
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2525

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+
2632
- name: Build
33+
if: matrix.os != 'macos-14'
2734
run: |
2835
cmake -S . -B "${{ env.BUILD_DIR }}"
2936
cmake --build "${{ env.BUILD_DIR }}"

0 commit comments

Comments
 (0)