-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.35 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
57
58
59
60
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# build all environments
build:
runs-on: ubuntu-latest
# build all environments in a matrix
strategy:
fail-fast: false
matrix:
environment: [ "HC32F460C", "HC32F460E" ]
steps:
# checkout the repository
- uses: actions/checkout@v4
# enable caching of pip and platformio
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
# install python
- uses: actions/setup-python@v5
with:
python-version: '3.9'
# install platformio
- name: Install PlatformIO core
run: pip install --upgrade platformio
# print the build environment name
- name: Print matrix value for 'environment'
run: echo ${{ matrix.environment }}
# build the environment
- name: Build environment
run: pio run --environment ${{ matrix.environment }}
# dummy job after all environments were build
all_build:
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}