-
Notifications
You must be signed in to change notification settings - Fork 49
70 lines (69 loc) · 1.68 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
name: Build
on:
schedule:
- cron: '0 0 * * SUN'
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**.md'
- .gitignore
- 'docs/**'
- 'theme/**'
- book.toml
- .github/workflows/docs.yaml
- container/Dockerfile
- .github/workflows/deploy-image.yaml
pull_request:
paths-ignore:
- '**.md'
- .gitignore
- 'docs/**'
- 'theme/**'
- book.toml
- .github/workflows/docs.yaml
- container/Dockerfile
- .github/workflows/deploy-image.yaml
jobs:
query:
runs-on: ubuntu-latest
outputs:
linux: ${{ steps.query.outputs.linux }}
u-boot: ${{ steps.query.outputs.u-boot }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Query available board configs
id: query
run: |
echo "linux=$(./bsp json edition linux)" >> $GITHUB_OUTPUT
echo "u-boot=$(./bsp json edition u-boot)" >> $GITHUB_OUTPUT
build_u-boot:
needs: query
runs-on: ubuntu-latest
strategy:
matrix:
targets: [ u-boot ]
editions: ${{fromJSON(needs.query.outputs.u-boot)}}
steps:
- name: Build
uses: radxa-repo/bsp@main
with:
target: ${{ matrix.targets }}
edition: ${{ matrix.editions }}
artifacts: true
build_linux:
needs: query
runs-on: ubuntu-latest
strategy:
matrix:
targets: [ linux ]
editions: ${{fromJSON(needs.query.outputs.linux)}}
steps:
- name: Build
uses: radxa-repo/bsp@main
with:
target: ${{ matrix.targets }}
edition: ${{ matrix.editions }}
artifacts: true