Skip to content

Commit e7d869d

Browse files
committed
HACK: Play with CI build
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]>
1 parent 7758fe5 commit e7d869d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/build.yml

+14-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828
with:
29-
path: zephyr-rust-lang
29+
path: apptest
3030

3131
- name: Set up Python
3232
uses: actions/setup-python@v5
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Zephyr project
3737
uses: zephyrproject-rtos/action-zephyr-setup@v1
3838
with:
39-
app-path: zephyr-rust-lang
39+
app-path: apptest
4040
manifest-file-name: ci-manifest.yml
4141
toolchains: arm-zephyr-eabi:riscv64-zephyr-elf
4242

@@ -51,9 +51,19 @@ jobs:
5151
rustup target add thumbv8m.main-none-eabi
5252
5353
- name: Build firmware
54-
working-directory: zephyr-rust-lang
54+
working-directory: apptest
5555
shell: bash
5656
run: |
5757
cargo --version
5858
59-
west twister -T samples -T tests -v --inline-logs --integration
59+
# Try to figure out why we run out of space.
60+
echo df
61+
df -h
62+
pwd
63+
ls -l ..
64+
du -hs ../apptest
65+
du -hs ../modules
66+
du -hs ../zephyr
67+
du -hs ../zephyr-sdk
68+
69+
west twister -M all -T samples -T tests -v --inline-logs --integration

0 commit comments

Comments
 (0)