-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update dockerfile * add ENV DEBIAN_FRONTEND noninteractive * update trigger * update trigger * add rosdep update step * update dockerfile * remove unused lines * add pyproject.toml Signed-off-by: Masaya Kataoka <[email protected]> * update pyproject.toml * update dockerfile Signed-off-by: Masaya Kataoka <[email protected]> * add cleanup action Signed-off-by: Masaya Kataoka <[email protected]> * add cleanup step Signed-off-by: Masaya Kataoka <[email protected]> * update python version Signed-off-by: Masaya Kataoka <[email protected]> * update python version Signed-off-by: Masaya Kataoka <[email protected]> * fix workflow Signed-off-by: Masaya Kataoka <[email protected]> * change workflow order Signed-off-by: Masaya Kataoka <[email protected]> * add shell Signed-off-by: Masaya Kataoka <[email protected]> --------- Signed-off-by: Masaya Kataoka <[email protected]>
- Loading branch information
1 parent
ac53e5e
commit 97a54ce
Showing
10 changed files
with
79 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "Cleanup Runner Image" | ||
description: "Clean up runner" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: cleanup | ||
run: | | ||
docker images | ||
sudo rm -rf "/opt/ghc" || true | ||
sudo rm -rf "/usr/share/dotnet" || true | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" || true | ||
sudo rm -rf "/usr/local/lib/android" || true | ||
sudo rm -rf "/usr/local/share/boost" || true | ||
docker rmi $(docker image ls -q --filter "reference=node*") | ||
docker rmi $(docker image ls -q --filter "reference=debian*") | ||
docker rmi $(docker image ls -q --filter "reference=alpine*") | ||
docker rmi $(docker image ls -q --filter "reference=ubuntu:18.04") | ||
docker rmi $(docker image ls -q --filter "reference=ubuntu:20.04") | ||
sudo apt purge \ | ||
ansible \ | ||
aria2 \ | ||
azure-cli \ | ||
bazel \ | ||
cabal* \ | ||
clang* \ | ||
dotnet-sdk* \ | ||
ghc* \ | ||
google-chrome-stable \ | ||
google-cloud-sdk \ | ||
heroku \ | ||
kubectl \ | ||
mysql* \ | ||
node* \ | ||
npm* \ | ||
php* \ | ||
powershell \ | ||
rpm \ | ||
ruby* \ | ||
subversion \ | ||
yarn \ | ||
-yq >/dev/null 2>&1 || true | ||
sudo apt-get autoremove -y >/dev/null 2>&1 || true | ||
sudo apt-get autoclean -y >/dev/null 2>&1 || true | ||
df -h | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ private.yml | |
scripts/packages.repos | ||
scripts/rosdep_base.yaml | ||
scripts/rosdep.yaml | ||
dataset | ||
dataset | ||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters