-
Notifications
You must be signed in to change notification settings - Fork 25
43 lines (37 loc) · 1.15 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build
on: [push, pull_request]
jobs:
build:
name: Build my artifact
runs-on: ubuntu-latest
steps:
- name: Maximize build space
uses: AdityaGarg8/remove-unwanted-software@v4.1
with:
remove-android: 'true'
- name: Checkout
uses: actions/checkout@v3
with:
path: Arduino-Zephyr-API
- name: Build
run: |
echo "Free space:"
df -h
- name: test
uses: addnab/docker-run-action@v3
with:
image: zephyrprojectrtos/ci:latest
options: -v ${{ github.workspace }}:/var/www
run: |
echo hello
- name: Initialize
working-directory: Arduino-Zephyr-API
run: |
west init -m https://github.com/zephyrproject-rtos/gsoc-2022-arduino-core.git
west update
git clone https://github.com/arduino/ArduinoCore-API.git ArduinoCore-API
cp -r ArduinoCore-API/api modules/lib/Arduino-Zephyr-API/cores/arduino/.
- name: Build fade
working-directory: Arduino-Zephyr-API
run: |
west build -p -b arduino_nano_33_ble_sense samples/fade