Skip to content

Commit

Permalink
GitHub Action: remove build directories on Windows
Browse files Browse the repository at this point in the history
This should mitigate problems due to low space available in CI machine such as the one reported in #456 .
  • Loading branch information
traversaro committed Sep 3, 2020
1 parent adebac8 commit a52a01c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ jobs:
# Make sure that vcpkg's ace .dll are on the PATH
source /c/robotology/scripts/setup-deps.sh
cmake --build . --config Debug
# Cleanup build directories to avoid to fill the disk
rm -rf ./robotology
- name: Build (Release) [Windows]
if: matrix.os == 'windows-2019'
Expand All @@ -224,6 +226,8 @@ jobs:
# Make sure that vcpkg's ace .dll are on the PATH
source /c/robotology/scripts/setup-deps.sh
cmake --build . --config Release
# Cleanup build directories to avoid to fill the disk
rm -rf ./robotology
# Just for release builds we gerate the installer
- name: Generate installer [Windows]
Expand Down

0 comments on commit a52a01c

Please sign in to comment.