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 13f80c2Copy full SHA for 13f80c2
.github/workflows/build.yml
@@ -5,10 +5,20 @@ on: [push, pull_request]
5
jobs:
6
build:
7
runs-on: ubuntu-latest
8
- container: zephyrprojectrtos/ci:latest
9
env:
10
CMAKE_PREFIX_PATH: /opt/toolchains
11
steps:
+ - 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
18
+ /usr/bin/docker system prune -af
19
+ sudo rm -rf /usr/local/*
20
21
+
22
- name: Checkout
23
uses: actions/checkout@v2
24
with:
@@ -37,8 +47,3 @@ jobs:
37
47
run: |
38
48
west build -p -b beagleconnect_freedom samples/analog_input
39
49
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