-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (71 loc) · 2.57 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
77
78
79
80
81
82
83
84
85
name: PlatformIO CI
on:
push:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
environment: [mk4, mk5, mk6, native]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache PlatformIO
uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO
run: |
pip install --upgrade platformio
- name: Cache project build cache for ${{ matrix.environment }}
uses: actions/cache@v3
with:
path: |
.pio/build-cache
key: ${{ runner.os }}-${{ matrix.environment }}-build-cache
- name: Build application (${{ matrix.environment }})
if: matrix.environment != 'native'
run: pio run --environment ${{ matrix.environment }}
- name: Rename firmware artifact
if: matrix.environment != 'native'
run: cp ${{ github.workspace }}/.pio/build/${{ matrix.environment }}/firmware.bin ugly-duckling-${{ matrix.environment }}.bin
- name: Upload firmware artifact
if: matrix.environment != 'native'
uses: "actions/upload-artifact@v3"
with:
path: ugly-duckling-${{ matrix.environment }}.bin
if-no-files-found: error
- name: Run unit tests
if: matrix.environment == 'native'
run: pio test --environment native
release:
needs: build
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -R
- name: Release
uses: softprops/action-gh-release@v1
with:
files: artifact/*
ready-to-merge:
needs: build
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- name: Dummy
run: echo "Everything is green across the board on ${{ github.ref }}"