Skip to content

Commit

Permalink
HACK: Play with CI build
Browse files Browse the repository at this point in the history
Print out some extra stuff to try and figure out how to get enough disk
space for our builds.

Signed-off-by: David Brown <[email protected]>
  • Loading branch information
d3zd3z committed Oct 25, 2024
1 parent 7758fe5 commit e7d869d
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
path: zephyr-rust-lang
path: apptest

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
app-path: zephyr-rust-lang
app-path: apptest
manifest-file-name: ci-manifest.yml
toolchains: arm-zephyr-eabi:riscv64-zephyr-elf

Expand All @@ -51,9 +51,19 @@ jobs:
rustup target add thumbv8m.main-none-eabi
- name: Build firmware
working-directory: zephyr-rust-lang
working-directory: apptest
shell: bash
run: |
cargo --version
west twister -T samples -T tests -v --inline-logs --integration
# Try to figure out why we run out of space.
echo df
df -h
pwd
ls -l ..
du -hs ../apptest
du -hs ../modules
du -hs ../zephyr
du -hs ../zephyr-sdk
west twister -M all -T samples -T tests -v --inline-logs --integration

0 comments on commit e7d869d

Please sign in to comment.