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 2daf8c2 commit b422ffcCopy full SHA for b422ffc
.github/workflows/test.yml
@@ -39,6 +39,9 @@ jobs:
39
run: |
40
choco install tree
41
if: runner.os == 'Windows'
42
+ # Pre-fetch HLS binaries before the tests because otherwise
43
+ # we run into timeouts. Downloading takes longer, since we download
44
+ # per HLS version one HLS binary per GHC version.
45
- run: |
46
mkdir -p test-workspace/bin/
47
export GHCUP_INSTALL_BASE_PREFIX=$(pwd)/test-workspace/bin
@@ -67,6 +70,9 @@ jobs:
67
70
68
71
# Create package artefacts
69
72
- name: Delete test artefacts
73
+ # The test-suite doesn't clean up correctly after itself.
74
+ # This is a poor man's workaround that after test execution,
75
+ # the test-workspace still contains binaries and caches.
76
77
tree -a test-workspace/
78
rm -rf test-workspace/
0 commit comments