-
Notifications
You must be signed in to change notification settings - Fork 26
85 lines (72 loc) · 1.76 KB
/
build-yocto.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: Build Yocto
on:
pull_request:
push:
branches:
- main
jobs:
kas-lock:
runs-on: [self-hosted, x86]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run kas lock
run: |
kas dump --update --lock --inplace ci/base.yml
- name: Prepare artifact
run: |
mkdir ci/lock
mv -v ci/*.lock.yml ci/lock
- uses: actions/upload-artifact@v4
with:
name: kas-lock
path: ci/lock
yocto-check-layer:
needs: kas-lock
runs-on: [self-hosted, x86]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
with:
name: kas-lock
path: ci/lock
- name: Prepare artifact
run: |
mv -v ci/lock/* ci
- name: Run yocto-check-layer
run: |
ci/yocto-check-layer.sh
compile:
needs: kas-lock
strategy:
fail-fast: true
matrix:
machine:
- qcm6490-idp
- qcs6490-rb3gen2-core-kit
- sa8775p-ride-sx
runs-on: [self-hosted, x86]
name: ${{ matrix.machine }}/poky/systemd
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
with:
name: kas-lock
path: ci/lock
- name: Prepare artifact
run: |
mv -v ci/lock/* ci
- name: Kas build
run: |
export DL_DIR=/srv/gh-runners/quic-yocto/downloads
export SSTATE_DIR=/srv/gh-runners/quic-yocto/sstate-cache
mkdir -p $DL_DIR
mkdir -p $SSTATE_DIR
mkdir build
cd build
kas build ../ci/${{ matrix.machine }}.yml