|
6 | 6 | if: "!contains(github.event.head_commit.message, 'ci skip')"
|
7 | 7 | steps:
|
8 | 8 | - uses: actions/checkout@v3
|
| 9 | + - uses: ./.github/actions/s3-configure |
| 10 | + env: |
| 11 | + S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} |
| 12 | + S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} |
| 13 | + S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }} |
| 14 | + with: |
| 15 | + access_key: ${S3_ACCESS_KEY} |
| 16 | + secret_key: ${S3_SECRET_KEY} |
| 17 | + host_base: ${S3_HOST_BASE} |
9 | 18 | - uses: ./.github/actions/bitbake-repo
|
10 | 19 | with:
|
11 | 20 | repo_release: 'scarthgap'
|
12 | 21 |
|
13 |
| - matrix-build-image: |
| 22 | + matrix-build-image-raspberrypi-stable: |
| 23 | + strategy: |
| 24 | + fail-fast: false |
| 25 | + matrix: |
| 26 | + machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5'] |
| 27 | + wpe_vers: ['2_46'] |
| 28 | + yocto_rel: ['scarthgap'] |
| 29 | + runs-on: [self-hosted, builder] |
| 30 | + if: "!contains(github.event.head_commit.message, 'ci skip')" |
| 31 | + needs: scarthgap-repo |
| 32 | + steps: |
| 33 | + - uses: ./.github/actions/bitbake-build |
| 34 | + with: |
| 35 | + bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} |
| 36 | + bitbake_machine: ${{ matrix.machine }} |
| 37 | + bitbake_source: 'poky-wayland layers.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config' |
| 38 | + repo_release: ${{ matrix.yocto_rel }} |
| 39 | + |
| 40 | + |
| 41 | + matrix-build-image-raspberrypi-nightly: |
| 42 | + strategy: |
| 43 | + fail-fast: false |
| 44 | + matrix: |
| 45 | + machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5'] |
| 46 | + wpe_vers: ['nightly'] |
| 47 | + yocto_rel: ['scarthgap'] |
| 48 | + continue-on-error: true |
| 49 | + runs-on: [self-hosted, builder] |
| 50 | + if: "!contains(github.event.head_commit.message, 'ci skip')" |
| 51 | + needs: scarthgap-repo |
| 52 | + steps: |
| 53 | + - uses: ./.github/actions/bitbake-build |
| 54 | + with: |
| 55 | + bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} |
| 56 | + bitbake_machine: ${{ matrix.machine }} |
| 57 | + bitbake_source: 'poky-wayland layers.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config' |
| 58 | + repo_release: ${{ matrix.yocto_rel }} |
| 59 | + |
| 60 | + matrix-build-image-freescale: |
14 | 61 | strategy:
|
15 | 62 | fail-fast: false
|
16 | 63 | matrix:
|
17 |
| - machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5', 'wandboard-mesa'] |
| 64 | + machine: ['wandboard-mesa'] |
18 | 65 | wpe_vers: ['2_46', 'nightly']
|
19 | 66 | yocto_rel: ['scarthgap']
|
20 | 67 | continue-on-error: true
|
21 | 68 | runs-on: [self-hosted, builder]
|
22 | 69 | if: "!contains(github.event.head_commit.message, 'ci skip')"
|
23 | 70 | needs: scarthgap-repo
|
24 | 71 | steps:
|
25 |
| - #- uses: actions/checkout@v3 |
26 | 72 | - uses: ./.github/actions/bitbake-build
|
27 | 73 | with:
|
28 |
| - bitbake_source: 'raspberrypi3-mesa-wpe-${{ matrix.wpe_vers }} ${{ matrix.machine }} poky-wayland layers.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config' |
| 74 | + bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} |
| 75 | + bitbake_machine: ${{ matrix.machine }} |
| 76 | + bitbake_source: 'poky-wayland layers.freescale conf.wpe-${{ matrix.wpe_vers }} --update-config' |
29 | 77 | repo_release: ${{ matrix.yocto_rel }}
|
30 | 78 |
|
31 |
| - # scarthgap-raspberrypi3-mesa-weston-wpe-nightly: |
32 |
| - # runs-on: self-hosted |
33 |
| - # if: "!contains(github.event.head_commit.message, 'ci skip')" |
34 |
| - # steps: |
35 |
| - # - uses: ./.github/actions/bitbake-build |
36 |
| - # with: |
37 |
| - # bitbake_source: 'rpi3-mesa-wpe-nightly raspberrypi3-mesa poky-wayland layers.raspberrypi conf.wpe-nightly --update-config' |
38 |
| - # repo_release: 'scarthgap' |
39 |
| - # needs: scarthgap-repo |
40 |
| - # |
41 |
| - # scarthgap-raspberrypi4-64-mesa-weston-wpe-nightly: |
42 |
| - # runs-on: self-hosted |
43 |
| - # if: "!contains(github.event.head_commit.message, 'ci skip')" |
44 |
| - # steps: |
45 |
| - # - uses: ./.github/actions/bitbake-build |
46 |
| - # with: |
47 |
| - # bitbake_source: 'rpi4-mesa-wpe-nightly raspberrypi4-64-mesa poky-wayland layers.raspberrypi conf.wpe-nightly --update-config' |
48 |
| - # repo_release: 'scarthgap' |
49 |
| - # needs: scarthgap-repo |
50 |
| - # |
51 |
| - # scarthgap-raspberrypi3-mesa-weston-wpe-2_38: |
52 |
| - # runs-on: self-hosted |
53 |
| - # if: "!contains(github.event.head_commit.message, 'ci skip')" |
54 |
| - # steps: |
55 |
| - # - uses: ./.github/actions/bitbake-build |
56 |
| - # with: |
57 |
| - # bitbake_source: 'rpi3-mesa-wpe-2_38 raspberrypi3-mesa poky-wayland layers.raspberrypi conf.wpe-2_38 --update-config' |
58 |
| - # repo_release: 'scarthgap' |
59 |
| - # needs: scarthgap-repo |
60 |
| - # |
61 |
| - # scarthgap-raspberrypi4-64-mesa-weston-wpe-2_38: |
62 |
| - # runs-on: self-hosted |
63 |
| - # if: "!contains(github.event.head_commit.message, 'ci skip')" |
64 |
| - # steps: |
65 |
| - # - uses: ./.github/actions/bitbake-build |
66 |
| - # with: |
67 |
| - # bitbake_source: 'rpi4-mesa-wpe-2_38 raspberrypi4-64-mesa poky-wayland layers.raspberrypi conf.wpe-2_38 --update-config' |
68 |
| - # repo_release: 'scarthgap' |
69 |
| - # needs: scarthgap-repo |
|
0 commit comments