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 1097ce6 commit afb4328Copy full SHA for afb4328
.github/workflows/flakiness.yml
@@ -81,12 +81,14 @@ jobs:
81
TEST_PATTERNS: ${{ github.event.inputs.test_patterns }}
82
PATTERN_FILE: 'scripts/flaky-test-patterns.txt'
83
NO_BUILD_ONCE: '1'
84
- HLS_TEST_EXE: 'hls'
85
- HLS_WRAPPER_TEST_EXE: 'hls-wrapper'
+ # HLS_TEST_EXE: 'hls'
+ # HLS_WRAPPER_TEST_EXE: 'hls-wrapper'
86
run: |
87
# Run with a sensible default of 1000 iterations on PRs;
88
max_iter="${{ github.event.inputs.max_iter }}"
89
max_iter="${max_iter:-1000}"
90
+ # copy hls to current dir so the script can find it
91
+ HLS_TEST_EXE="$(cabal exec which hls)"
92
bash scripts/flaky-test-loop.sh "${max_iter}"
93
ec=$?
94
# Interpret exit codes from flaky-test-loop.sh
0 commit comments