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 cfcff4f commit 75e79f1Copy full SHA for 75e79f1
.github/workflows/ci_zig.yml
@@ -219,11 +219,15 @@ jobs:
219
git reset --hard HEAD
220
nix develop ./src/ -c zig build && zig build snapshot && zig build test
221
222
+
223
- name: Test nix package
224
if: ${{ runner.os == 'Linux' || (runner.os == 'macOS' && runner.arch != 'X64') }}
- run: |
225
- nix build ./src/#roc
226
- ./result/bin/roc check src/PROFILING/bench_repeated_check.roc
+ uses: ./.github/actions/flaky-retry
+ with:
227
+ command: 'nix build ./src/#roc && ./result/bin/roc check src/PROFILING/bench_repeated_check.roc'
228
+ error_string_contains: 'TemporaryNameServerFailure'
229
+ retry_count: 3
230
231
232
zig-cross-compile:
233
needs: check-once
0 commit comments