Skip to content

Commit 13f80c2

Browse files
committed
github: workflow: build: stop archiving firmwares
This causes the ci to fill up space, hence stop archiving firmwares Signed-off-by: Dhruva Gole <[email protected]>
1 parent a678711 commit 13f80c2

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/build.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,20 @@ on: [push, pull_request]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
container: zephyrprojectrtos/ci:latest
98
env:
109
CMAKE_PREFIX_PATH: /opt/toolchains
1110
steps:
11+
- name: Free disk
12+
run: |
13+
df -h
14+
ls -la /dev/root
15+
sudo apt-get -qq purge build-essential ghc*
16+
sudo apt-get clean
17+
df -h
18+
/usr/bin/docker system prune -af
19+
sudo rm -rf /usr/local/*
20+
df -h
21+
1222
- name: Checkout
1323
uses: actions/checkout@v2
1424
with:
@@ -37,8 +47,3 @@ jobs:
3747
run: |
3848
west build -p -b beagleconnect_freedom samples/analog_input
3949
40-
- name: Archive firmware
41-
uses: actions/upload-artifact@v2
42-
with:
43-
name: firmware
44-
path: Arduino-Zephyr-API/build/zephyr/zephyr.*

0 commit comments

Comments
 (0)