Skip to content

Commit a627593

Browse files
committed
ci: only on rpi5
1 parent 479a4cc commit a627593

1 file changed

Lines changed: 1 addition & 128 deletions

File tree

.github/workflows/test-build-pr.yml

Lines changed: 1 addition & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fail-fast: false
4747
matrix:
4848
machine: ['raspberrypi5']
49-
wpe_vers: ['2_50']
49+
wpe_vers: ['nightly']
5050
yocto_rel: ['scarthgap']
5151
runs-on: [self-hosted, podman]
5252
permissions:
@@ -74,131 +74,4 @@ jobs:
7474
s3_storage: ${S3_STORAGE}
7575
wpe_vers: ${{ matrix.wpe_vers }}
7676

77-
build-raspberrypi-rest-stable:
78-
strategy:
79-
fail-fast: false
80-
matrix:
81-
machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa']
82-
wpe_vers: ['2_50']
83-
yocto_rel: ['scarthgap']
84-
runs-on: [self-hosted, builder]
85-
if: "!contains(github.event.head_commit.message, 'ci skip') && github.event_name == 'pull_request' && !github.event.pull_request.draft"
86-
needs: scarthgap-repo
87-
steps:
88-
- uses: actions/checkout@v3
89-
- uses: ./.github/actions/s3-configure
90-
env:
91-
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
92-
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
93-
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }}
94-
with:
95-
access_key: ${S3_ACCESS_KEY}
96-
secret_key: ${S3_SECRET_KEY}
97-
host_base: ${S3_HOST_BASE}
98-
- uses: ./.github/actions/bitbake-build
99-
env:
100-
S3_STORAGE: ${{ secrets.S3_STORAGE }}
101-
with:
102-
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }}
103-
bitbake_machine: ${{ matrix.machine }}
104-
bitbake_source: 'poky-wayland layers.raspberrypi conf.reproducible-core.wpe-${{ matrix.wpe_vers }} --update-config'
105-
s3_storage: ${S3_STORAGE}
106-
repo_release: ${{ matrix.yocto_rel }}
107-
108-
test-raspberrypi-rest-stable:
109-
strategy:
110-
fail-fast: false
111-
matrix:
112-
machine: ['raspberrypi3-mesa']
113-
wpe_vers: ['2_50']
114-
yocto_rel: ['scarthgap']
115-
runs-on: [self-hosted, podman]
116-
permissions:
117-
pull-requests: write
118-
needs: build-raspberrypi-rest-stable
119-
steps:
120-
- uses: actions/checkout@v3
121-
- uses: ./.github/actions/s3-configure
122-
env:
123-
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
124-
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
125-
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }}
126-
with:
127-
access_key: ${S3_ACCESS_KEY}
128-
secret_key: ${S3_SECRET_KEY}
129-
host_base: ${S3_HOST_BASE}
130-
- uses: ./.github/actions/podman-robot
131-
env:
132-
GITHUB_TOKEN: ${{ secrets.github_token }}
133-
S3_STORAGE: ${{ secrets.S3_STORAGE }}
134-
with:
135-
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }}
136-
bitbake_machine: ${{ matrix.machine }}
137-
github_token: ${GITHUB_TOKEN}
138-
s3_storage: ${S3_STORAGE}
139-
wpe_vers: ${{ matrix.wpe_vers }}
140-
141-
build-freescale-stable:
142-
strategy:
143-
fail-fast: false
144-
matrix:
145-
machine: ['wandboard-mesa']
146-
wpe_vers: ['2_50']
147-
yocto_rel: ['scarthgap']
148-
continue-on-error: true
149-
runs-on: [self-hosted, builder]
150-
if: "!contains(github.event.head_commit.message, 'ci skip') && github.event_name == 'pull_request' && !github.event.pull_request.draft"
151-
needs: scarthgap-repo
152-
steps:
153-
- uses: actions/checkout@v3
154-
- uses: ./.github/actions/s3-configure
155-
env:
156-
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
157-
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
158-
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }}
159-
with:
160-
access_key: ${S3_ACCESS_KEY}
161-
secret_key: ${S3_SECRET_KEY}
162-
host_base: ${S3_HOST_BASE}
163-
- uses: ./.github/actions/bitbake-build
164-
env:
165-
S3_STORAGE: ${{ secrets.S3_STORAGE }}
166-
with:
167-
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }}
168-
bitbake_machine: ${{ matrix.machine }}
169-
bitbake_source: 'poky-wayland layers.freescale conf.reproducible-core.wpe-${{ matrix.wpe_vers }} --update-config'
170-
s3_storage: ${S3_STORAGE}
171-
repo_release: ${{ matrix.yocto_rel }}
17277

173-
test-freescale-stable:
174-
strategy:
175-
fail-fast: false
176-
matrix:
177-
machine: ['wandboard-mesa']
178-
wpe_vers: ['2_50']
179-
yocto_rel: ['scarthgap']
180-
runs-on: [self-hosted, podman]
181-
permissions:
182-
pull-requests: write
183-
needs: build-freescale-stable
184-
steps:
185-
- uses: actions/checkout@v3
186-
- uses: ./.github/actions/s3-configure
187-
env:
188-
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
189-
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
190-
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }}
191-
with:
192-
access_key: ${S3_ACCESS_KEY}
193-
secret_key: ${S3_SECRET_KEY}
194-
host_base: ${S3_HOST_BASE}
195-
- uses: ./.github/actions/podman-robot
196-
env:
197-
GITHUB_TOKEN: ${{ secrets.github_token }}
198-
S3_STORAGE: ${{ secrets.S3_STORAGE }}
199-
with:
200-
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }}
201-
bitbake_machine: ${{ matrix.machine }}
202-
github_token: ${GITHUB_TOKEN}
203-
s3_storage: ${S3_STORAGE}
204-
wpe_vers: ${{ matrix.wpe_vers }}

0 commit comments

Comments
 (0)