Skip to content

Commit 10cf4c1

Browse files
kellyguo11ooctipusgreptile-apps[bot]
authored
Adds more cleanup commands to free up disk space for license check job (#4045)
# Description Frees up more space at the start of the licence checker job so that we have enough disk space to install all the dependencies needed to avoid the out of space errors. ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task --> --------- Signed-off-by: ooctipus <zhengyuz@nvidia.com> Co-authored-by: ooctipus <zhengyuz@nvidia.com> Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
1 parent 2ed331a commit 10cf4c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/license-check.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
- name: Clean up disk space
2828
run: |
2929
rm -rf /opt/hostedtoolcache
30+
rm -rf /usr/share/dotnet
31+
rm -rf /opt/ghc
32+
docker container prune -f
33+
docker image prune -af
34+
docker volume prune -f || true
35+
3036
3137
- name: Set up Python
3238
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)