[#68843] .github: workflows: CI: Increase disk space #34
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
name: Kenning Zephyr runtime tests | |
on: | |
push: | |
branches: [main, fix-gha] | |
pull_request: | |
branches: [main, fix-gha] | |
jobs: | |
readme-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:bookworm | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Increase disk space | |
run: | | |
echo "Before cleanup" | |
df -H | |
rm -rf /__t/CodeQL | |
rm -rf /__t/Java_Temurin-Hotspot_jdk | |
rm -rf /__t/Java_Temurin-Hotspot_jdk | |
rm -rf /__t/PyPy | |
rm -rf /__t/Python/3.10.* | |
rm -rf /__t/Python/3.11.* | |
rm -rf /__t/Python/3.9.* | |
rm -rf /__t/Python/3.8.* | |
rm -rf /__t/Python/3.7.* | |
rm -rf /__t/Ruby | |
rm -rf /__t/go | |
rm -rf /__t/node | |
echo "After cleanup" | |
df -H | |
- name: Install tuttest dependencies | |
run: | | |
apt-get update -qqy | |
apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs sudo | |
sudo pip3 install --break-system-packages git+https://github.com/antmicro/tuttest.git | |
- name: Run README.md snippets | |
run: | | |
./scripts/test_readme.sh |