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 313e36a commit ec6e8daCopy full SHA for ec6e8da
.github/workflows/test.yml
@@ -93,6 +93,21 @@ jobs:
93
test: false
94
95
steps:
96
+ - if: matrix.test && matrix.os == 'ubuntu-latest'
97
+ # Using this as workaround for wrapper-test suite failures, which started failing by the end of Feb 2024
98
+ # due to "No space left on device" when installing stack (via hie-bios' stack setup --silent)
99
+ name: Free Disk Space (Ubuntu)
100
+ uses: jlumbroso/free-disk-space@v1.3.1
101
+ with:
102
+ tool-cache: false
103
+ haskell: false
104
+ large-packages: false
105
+ # Enabling cleanup of stuff that's fast to run and unnecessary for our CI workflows
106
+ android: true
107
+ dotnet: true
108
+ docker-images: true
109
+ swap-storage: true
110
+
111
- uses: actions/checkout@v3
112
113
- uses: ./.github/actions/setup-build
0 commit comments