forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (63 loc) · 1.71 KB
/
build_multiple.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
61
62
63
64
65
name: Build firmware - All Dagoma variants
on:
pull_request:
branches:
- DE200-2.1.x
paths:
- '.github/workflows/build_*.yaml'
- 'Marlin/**'
push:
branches:
- DE200-2.1.x
paths:
- '.github/workflows/build_*.yaml'
- 'Marlin/**'
release:
types:
- published
workflow_dispatch:
jobs:
build_multiple:
strategy:
fail-fast: false
matrix:
lang:
- en
- fr
- de
bicol: [0, 1]
filsens: [0, 1]
trapez: [0, 1]
xl: [0, 1]
nolcd: [0, 1]
therm: [0, 1]
pinout: [0]
z122: [0]
# bltouch: [0]
exclude:
- nolcd: 1
lang: fr # language is irrelevant to nolcd - english no lcd is all we need
- nolcd: 1
lang: de # language is irrelevant to nolcd - english no lcd is all we need
- bicol: 1
filsens: 0 # bicolor implies extruder+
- pinout: 1
bicol: 1 # no pinouts for filament sensor 2 on standard pinouts
- nolcd: 1
filsens: 1 # Filament sensor (and hence filament runout and hence advanced pause) needs lcd
permissions:
contents: write
name: Build ${{ matrix.lang }}
uses: ./.github/workflows/build_single.yaml
with:
lang: ${{ matrix.lang }}
bicol: ${{ matrix.bicol }}
filsens: ${{ matrix.filsens }}
trapez: ${{ matrix.trapez }}
xl: ${{ matrix.xl }}
nolcd: ${{ matrix.nolcd }}
therm: ${{ matrix.therm }}
pinout: ${{ matrix.pinout }}
z122: ${{ matrix.z122 }}
# bltouch: ${{ matrix.bltouch }}
secrets: inherit