Skip to content

Commit 9f053fc

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 9f053fc

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/build.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ jobs:
99
env:
1010
CMAKE_PREFIX_PATH: /opt/toolchains
1111
steps:
12+
- name: Free disk
13+
run: |
14+
df -h
15+
sudo apt-get -qq purge build-essential ghc*
16+
sudo apt-get clean
17+
df -h
18+
sudo mkdir /mnt/ccache
19+
mkdir ${{ env.CCACHE_DIR }}
20+
sudo mount --bind ${{ env.CCACHE_DIR }} /mnt/ccache
21+
sudo rm -rf /usr/local/*
22+
df -h
23+
1224
- name: Checkout
1325
uses: actions/checkout@v2
1426
with:
@@ -37,8 +49,3 @@ jobs:
3749
run: |
3850
west build -p -b beagleconnect_freedom samples/analog_input
3951
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)