Skip to content

Commit

Permalink
only doc test 20
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdboom committed Apr 9, 2024
1 parent 3f3de67 commit 5bb64c6
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,22 @@ jobs:
python-version: ["3.10", "3.11"]
steps:
- name: Free disk space
if: ${{ matrix.os != 'windows-latest' }}
run: |
df -h
if [ "${{ matrix.os }}" == "windows-latest" ]; then
Remove-Item -Path "C:\Program Files\dotnet" -Recurse -Force
Remove-Item -Path "C:\opt\ghc" -Recurse -Force
Remove-Item -Path "C:\ProgramData\boost" -Recurse -Force
Remove-Item -Path "$env:AGENT_TOOLSDIRECTORY" -Recurse -Force
else
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
rm -rf /usr/local/share/boost
rm -rf "$AGENT_TOOLSDIRECTORY"
fi
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
rm -rf /usr/local/share/boost
rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- name: Free disk space
if: ${{ matrix.os == 'windows-latest' }}
run: |
df -h
Remove-Item -Path "C:\Program Files\dotnet" -Recurse -Force
Remove-Item -Path "C:\opt\ghc" -Recurse -Force
Remove-Item -Path "C:\ProgramData\boost" -Recurse -Force
Remove-Item -Path "$env:AGENT_TOOLSDIRECTORY" -Recurse -Force
df -h
- name: Check out source repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 5bb64c6

Please sign in to comment.