File tree 1 file changed +13
-6
lines changed
1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,22 @@ on: [push, pull_request]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
8
- container : zephyrprojectrtos/ci:latest
9
8
env :
10
9
CMAKE_PREFIX_PATH : /opt/toolchains
11
10
steps :
11
+ - name : Free disk
12
+ run : |
13
+ df -h
14
+ sudo apt-get -qq purge build-essential ghc*
15
+ sudo apt-get clean
16
+ df -h
17
+ /usr/bin/docker system prune -af
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
+
12
24
- name : Checkout
13
25
uses : actions/checkout@v2
14
26
with :
37
49
run : |
38
50
west build -p -b beagleconnect_freedom samples/analog_input
39
51
40
- - name : Archive firmware
41
- uses : actions/upload-artifact@v2
42
- with :
43
- name : firmware
44
- path : Arduino-Zephyr-API/build/zephyr/zephyr.*
You can’t perform that action at this time.
0 commit comments