Skip to content

Commit

Permalink
only doc test 17
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdboom committed Apr 9, 2024
1 parent 6276210 commit dac0369
Show file tree
Hide file tree
Showing 3 changed files with 286 additions and 13 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ jobs:
echo "Freeing up disk space on CI system"
echo "=============================================="
df -h
# Deleting ~15GB
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
rm -rf /usr/local/share/boost
rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up pdm
Expand Down Expand Up @@ -202,11 +202,17 @@ jobs:
echo "Freeing up disk space on CI system"
echo "=============================================="
df -h
# Deleting ~15GB
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
rm -rf /usr/local/share/boost
rm -rf "$AGENT_TOOLSDIRECTORY"
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
df -h
- name: Check out source repository
uses: actions/checkout@v4
Expand Down
Loading

0 comments on commit dac0369

Please sign in to comment.