-
Notifications
You must be signed in to change notification settings - Fork 82
60 lines (58 loc) · 1.96 KB
/
Copy pathtest-build.yml
File metadata and controls
60 lines (58 loc) · 1.96 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
53
54
55
56
57
58
59
60
name: Build tests
on: [pull_request]
jobs:
repo:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
yocto_release: ['scarthgap', 'whinlatter']
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/bitbake-repo
with:
repo_release: ${{ matrix.yocto_release }}
build-wpe:
runs-on: self-hosted
continue-on-error: ${{ matrix.yocto_release == 'whinlatter' }}
strategy:
fail-fast: false
matrix:
yocto_release: ['scarthgap', 'whinlatter']
machine: ['raspberrypi3-mesa', 'raspberrypi4-64']
yocto_prefix: ['TCLIBC=glibc']
wpe_vers: ['2_52']
include:
- yocto_release: scarthgap
machine: raspberrypi4-64
yocto_prefix: TCLIBC=musl
wpe_vers: 2_52
- yocto_release: whinlatter
machine: raspberrypi4-64
yocto_prefix: TCLIBC=musl
wpe_vers: 2_52
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/bitbake-build
with:
bitbake_source: '${{ matrix.machine }}-wpe-${{ matrix.wpe_vers }} ${{ matrix.machine }} poky layers.raspberrypi.webkit conf_v4.wpe-${{ matrix.wpe_vers }}'
repo_release: ${{ matrix.yocto_release }}
needs: repo
build-gtk:
runs-on: self-hosted
continue-on-error: ${{ matrix.yocto_release == 'whinlatter' }}
strategy:
fail-fast: false
matrix:
yocto_release: ['scarthgap', 'whinlatter']
machine: ['raspberrypi3-mesa', 'raspberrypi4-64']
yocto_prefix: ['TCLIBC=glibc']
wpe_vers: ['2_52']
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/bitbake-build
with:
bitbake_source: '${{ matrix.machine }}-wpe-${{ matrix.wpe_vers }} ${{ matrix.machine }} poky layers.raspberrypi.webkit conf_v4.wpe-${{ matrix.wpe_vers }}'
bitbake_target: webkitgtk
repo_release: ${{ matrix.yocto_release }}
needs: repo