-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up runner to free some resource
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,14 @@ jobs: | |
- integration-tls-provider | ||
- integration-tls-secret | ||
steps: | ||
# Ideally we'd use self-hosted runners, but this effort is still not stable | ||
# This action will remove unused software (dotnet, haskell, android libs, codeql, | ||
# and docker images) from the GH runner. | ||
# This leaves ~45GB free as of 2024-04-10, but this amount has varied as GH changed their | ||
# runners | ||
- name: Maximise GH runner space | ||
uses: jlumbroso/[email protected] | ||
|
||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
|
||
|
@@ -71,7 +79,7 @@ jobs: | |
juju add-model test-istio | ||
tox -e ${{ matrix.integration-types }} -- --model test-istio | ||
timeout-minutes: 80 | ||
|
||
- name: Setup Debug Artifact Collection | ||
run: mkdir tmp | ||
if: failure() | ||
|