Skip to content

Commit

Permalink
Merge pull request #22 from OUXT-Polaris/feature/python_tutorial
Browse files Browse the repository at this point in the history
Feature/python tutorial
  • Loading branch information
hakuturu583 authored Sep 16, 2023
2 parents fc636e5 + c18c365 commit 034a164
Show file tree
Hide file tree
Showing 6 changed files with 424 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,71 @@ jobs:
runs-on: ubuntu-20.04
timeout-minutes: 180
steps:
- name: Clean space
run: |
docker images
sudo rm -rf "/opt/*" || 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
sudo rm -rf "/usr/lib/jvm" || true
sudo rm -rf "/usr/share/swift" || true
sudo rm -rf "/usr/local/julia*" || true
sudo rm -rf "/usr/share/kotlinc" || true
sudo rm -rf "/usr/local/share/edge_driver" || true
sudo rm -rf "/usr/local/share/chromedriver-linux64" || true
sudo rm -rf "/usr/local/share/gecko_driver" || true
sudo rm -rf "/usr/share/miniconda" || true
sudo rm -rf "/usr/local/share/phantomjs*" || true
sudo rm -rf "/usr/share/sbt" || true
sudo rm -rf "/usr/local/sqlpackage" || true
docker rmi $(docker image ls -q --filter "reference=node*")
docker rmi $(docker image ls -q --filter "reference=buildpack*")
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")
sudo npm uninstall bazel
rustup self uninstall -y
sudo apt purge \
ansible \
apache2 \
aria2 \
azure-cli \
cabal* \
clang* \
dotnet-sdk* \
firefox \
ghc* \
google-chrome-stable \
google-cloud-sdk \
kubectl \
libpq-dev \
microsoft-edge-stable \
moby-buildx \
moby-cli \
moby-compose \
moby-engine \
mongodb* \
mono-complete \
mysql* \
nginx \
node* \
npm* \
nuget \
php* \
postgresql* \
powershell \
r-base \
rpm \
ruby* \
sphinxsearch \
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
- uses: actions/checkout@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
Binary file added docs/images/rqt_graph_rclpy_ros2launch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/rqt_graph_rclpy_ros2run.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 034a164

Please sign in to comment.