-
Notifications
You must be signed in to change notification settings - Fork 17
56 lines (46 loc) · 1.69 KB
/
build.yaml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
# see: https://github.com/marketplace/actions/test-compile-for-arduino
name: build
on: [push, pull_request]
jobs:
build:
name: build for MCU
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout M5Tough library
uses: actions/checkout@v4
with:
repository: mgrouch/M5Tough
ref: master
path: CustomLibrary_M5Tough # must contain string "Custom"
- name: Copy lv_conf.h
run: |
mkdir -p /home/runner/Arduino/libraries
cp /home/runner/work/bbn-m5stack-tough/bbn-m5stack-tough/lv_conf.h-custom /home/runner/Arduino/libraries/lv_conf.h
- name: Compile sketch
uses: ArminJo/arduino-test-compile@v3
with:
arduino-board-fqbn: esp32:esp32:m5stack-core2
arduino-platform: esp32:[email protected]
platform-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
set-build-path: true
- name: Make zip
run: |
ls /home/runner/work/bbn-m5stack-tough/bbn-m5stack-tough/bbn_m5tough_active_boat/build/*.bin | zip bbn_m5tough_active_boat_bin-$(date +%Y-%m-%d).zip -j -@
pwd
ls *.zip
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bbn_m5tough_active_boat_bin*.zip
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Look for tools
run: |
pwd
find /home/runner/ -name esptool.py
find /home/runner/ -name boot_app0.bin