Skip to content

Commit

Permalink
[#68843] .github: workflows: CI: Increase disk space
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Torhan <mtorhan@antmicro.com>
  • Loading branch information
m-torhan committed Nov 15, 2024
1 parent aa6faf9 commit 5a4510c
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Kenning Zephyr runtime tests

on:
push:
branches: [main]
branches: [main, fix-gha]
pull_request:
branches: [main]
branches: [main, fix-gha]

jobs:
readme-tests:
Expand All @@ -14,6 +14,24 @@ jobs:
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
Expand Down

0 comments on commit 5a4510c

Please sign in to comment.