-
Notifications
You must be signed in to change notification settings - Fork 42
76 lines (66 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: build
on:
push:
pull_request:
workflow_dispatch:
jobs:
targets:
runs-on: ubuntu-latest
outputs:
targets: ${{ steps.set-targets.outputs.targets }}
steps:
- name: Checkout
uses: actions/checkout@v4
- id: set-targets
run: echo "targets=[$(grep '\[env:' platformio.ini | sed 's/.*:\(.*\)].*/"\1"/' | grep -v simulator | tr '\n' ',')]" >> $GITHUB_OUTPUT
build:
needs: targets
runs-on: ubuntu-latest
strategy:
matrix:
target: ${{fromJSON(needs.targets.outputs.targets)}}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.target }}-pip
- name: Cache platformio
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ matrix.target }}-platformio
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Build ${{ matrix.target }}
run: |
pio run -e ${{ matrix.target }}
cp .pio/build/${{ matrix.target }}/firmware.hex .pio/build/quicksilver.${{ matrix.target }}.hex
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: .pio/build/quicksilver.${{ matrix.target }}.hex
upload:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: output
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: output/*/quicksilver*.hex