Add CI resources based on Robot-Framework #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build tests | |
on: [pull_request] | |
jobs: | |
scarthgap-repo: | |
runs-on: [self-hosted, builder] | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/s3-configure | |
env: | |
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }} | |
with: | |
access_key: ${S3_ACCESS_KEY} | |
secret_key: ${S3_SECRET_KEY} | |
host_base: ${S3_HOST_BASE} | |
- uses: ./.github/actions/bitbake-repo | |
with: | |
repo_release: 'scarthgap' | |
build-raspberrypi-stable: | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5'] | |
wpe_vers: ['2_46'] | |
yocto_rel: ['scarthgap'] | |
runs-on: [self-hosted, builder] | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
needs: scarthgap-repo | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/bitbake-build | |
with: | |
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} | |
bitbake_machine: ${{ matrix.machine }} | |
bitbake_source: 'poky-wayland layers.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config' | |
repo_release: ${{ matrix.yocto_rel }} | |
test-raspberrypi-stable: | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: ['raspberrypi3-mesa', 'raspberrypi5'] | |
wpe_vers: ['2_46'] | |
yocto_rel: ['scarthgap'] | |
runs-on: [self-hosted, podman] | |
needs: build-raspberrypi-stable | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/podman-robot | |
with: | |
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} | |
bitbake_machine: ${{ matrix.machine }} | |
build-raspberrypi-nightly: | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5'] | |
wpe_vers: ['nightly'] | |
yocto_rel: ['scarthgap'] | |
continue-on-error: true | |
runs-on: [self-hosted, builder] | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
needs: scarthgap-repo | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/bitbake-build | |
with: | |
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} | |
bitbake_machine: ${{ matrix.machine }} | |
bitbake_source: 'poky-wayland layers.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config' | |
repo_release: ${{ matrix.yocto_rel }} | |
build-freescale: | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: ['wandboard-mesa'] | |
wpe_vers: ['2_46', 'nightly'] | |
yocto_rel: ['scarthgap'] | |
continue-on-error: true | |
runs-on: [self-hosted, builder] | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
needs: scarthgap-repo | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/bitbake-build | |
with: | |
bitbake_buildname: wpe-${{ matrix.wpe_vers }}-${{ matrix.machine }} | |
bitbake_machine: ${{ matrix.machine }} | |
bitbake_source: 'poky-wayland layers.freescale conf.wpe-${{ matrix.wpe_vers }} --update-config' | |
repo_release: ${{ matrix.yocto_rel }} | |