Skip to content

Commit

Permalink
fix: Run cleanup before install .NET
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Aug 16, 2024
1 parent 1cfc04e commit 0671aa6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/step-dotnet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,6 @@ jobs:
submodules: recursive
token: ${{ secrets.FETCH_TOKEN || github.token }}

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnet-version }}
dotnet-quality: ${{ inputs.dotnet-quality }}

# Our modules occupy too much disk space. The GitHub-hosted runners ran into the
# error: "no space left on device." The pulled images are not cleaned up between
# the test runs. One obvious approach is splitting the tests and running them on
Expand All @@ -86,6 +80,12 @@ jobs:
docker-images: true
swap-storage: false

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnet-version }}
dotnet-quality: ${{ inputs.dotnet-quality }}

- name: Setup JDK 17
if: ${{ inputs.enableSonarQube == true }}
uses: actions/setup-java@v4
Expand Down

0 comments on commit 0671aa6

Please sign in to comment.