We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a678711 commit 9f053fcCopy full SHA for 9f053fc
.github/workflows/build.yml
@@ -9,6 +9,18 @@ jobs:
9
env:
10
CMAKE_PREFIX_PATH: /opt/toolchains
11
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
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
23
+
24
- name: Checkout
25
uses: actions/checkout@v2
26
with:
@@ -37,8 +49,3 @@ jobs:
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.*
0 commit comments