-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (47 loc) · 1.14 KB
/
compile.yml
File metadata and controls
52 lines (47 loc) · 1.14 KB
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
name: Compile targets
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config: [
nucleo_h755zi,
nucleo_h755zi_ram,
matek_H7_slim,
matek_H7_slim secure=true,
matek_H7_slim_ram,
matek_H7_slim_ram secure=true,
nucleo_n657x0_q_ext,
nucleo_n657x0_q_ram,
pixhawk4,
pixhawk4_ram,
stm32l4xx,
stm32f7xx,
stm32f7xx_ram,
stm32h7xx,
stm32h7xx secure=true,
stm32h7xx_ram,
stm32h7xx_ram secure=true,
stm32h735g_dk,
stm32h735g_dk_ram,
stm32n6xx_ext,
stm32n6xx_ram
]
container:
image: igormisic/improject:v1.0.2
options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: 'true'
- name: make ${{matrix.config}}
run: make ${{matrix.config}}