Skip to content

Upgrade release to Scarthgap #71

Upgrade release to Scarthgap

Upgrade release to Scarthgap #71

Workflow file for this run

name: Build tests
on: [pull_request]
jobs:
scarthgap-repo:
runs-on: [self-hosted, builder]
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- name: test
env:
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
S3_HOST_BASE: ${{ secrets.S3_HOST_BASE }}
run: |
echo secrets.S3_HOST_BASE
echo ${S3_HOST_BASE}
- 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'
matrix-build-image:
strategy:
fail-fast: false
matrix:
machine: ['raspberrypi3-mesa', 'raspberrypi4-64-mesa', 'raspberrypi5', '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.raspberrypi conf.wpe-${{ matrix.wpe_vers }} --update-config'
repo_release: ${{ matrix.yocto_rel }}
# scarthgap-raspberrypi3-mesa-weston-wpe-nightly:
# runs-on: self-hosted
# if: "!contains(github.event.head_commit.message, 'ci skip')"
# steps:
# - uses: ./.github/actions/bitbake-build
# with:
# bitbake_source: 'rpi3-mesa-wpe-nightly raspberrypi3-mesa poky-wayland layers.raspberrypi conf.wpe-nightly --update-config'
# repo_release: 'scarthgap'
# needs: scarthgap-repo
#
# scarthgap-raspberrypi4-64-mesa-weston-wpe-nightly:
# runs-on: self-hosted
# if: "!contains(github.event.head_commit.message, 'ci skip')"
# steps:
# - uses: ./.github/actions/bitbake-build
# with:
# bitbake_source: 'rpi4-mesa-wpe-nightly raspberrypi4-64-mesa poky-wayland layers.raspberrypi conf.wpe-nightly --update-config'
# repo_release: 'scarthgap'
# needs: scarthgap-repo
#
# scarthgap-raspberrypi3-mesa-weston-wpe-2_38:
# runs-on: self-hosted
# if: "!contains(github.event.head_commit.message, 'ci skip')"
# steps:
# - uses: ./.github/actions/bitbake-build
# with:
# bitbake_source: 'rpi3-mesa-wpe-2_38 raspberrypi3-mesa poky-wayland layers.raspberrypi conf.wpe-2_38 --update-config'
# repo_release: 'scarthgap'
# needs: scarthgap-repo
#
# scarthgap-raspberrypi4-64-mesa-weston-wpe-2_38:
# runs-on: self-hosted
# if: "!contains(github.event.head_commit.message, 'ci skip')"
# steps:
# - uses: ./.github/actions/bitbake-build
# with:
# bitbake_source: 'rpi4-mesa-wpe-2_38 raspberrypi4-64-mesa poky-wayland layers.raspberrypi conf.wpe-2_38 --update-config'
# repo_release: 'scarthgap'
# needs: scarthgap-repo