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 bb024c8Copy full SHA for bb024c8
.github/workflows/build.yml
@@ -9,6 +9,17 @@ jobs:
9
env:
10
CMAKE_PREFIX_PATH: /opt/toolchains
11
steps:
12
+ - name: Free disk
13
+ run: |
14
+ sudo apt-get -qq purge build-essential ghc*
15
+ sudo apt-get clean
16
+ docker system prune -af
17
+ sudo mkdir /mnt/ccache
18
+ mkdir ${{ env.CCACHE_DIR }}
19
+ sudo mount --bind ${{ env.CCACHE_DIR }} /mnt/ccache
20
+ sudo rm -rf /usr/local/*
21
+ df -h
22
+
23
- name: Checkout
24
uses: actions/checkout@v2
25
with:
@@ -37,8 +48,3 @@ jobs:
37
48
run: |
38
49
west build -p -b beagleconnect_freedom samples/analog_input
39
50
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