From 9edf5be8880d0a40bc1b4ca647d4381ef8e3605b Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Thu, 24 Oct 2024 10:54:06 +0200 Subject: [PATCH] ci: .github: Add manifest and CI build configuration for styhead release - Introduced a new `manifest-styhead.xml` file in the `.github/manifest` directory. - Added "styhead" CI build steps to the GitHub Actions workflow. --- .github/manifest/manifest-styhead.xml | 18 ++++++++++++++++++ .github/workflows/test-build.yml | 19 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .github/manifest/manifest-styhead.xml diff --git a/.github/manifest/manifest-styhead.xml b/.github/manifest/manifest-styhead.xml new file mode 100644 index 00000000..1cfc59ff --- /dev/null +++ b/.github/manifest/manifest-styhead.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 2802e0e4..860a8362 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -84,3 +84,22 @@ jobs: repo_release: 'scarthgap' needs: scarthgap-repo + styhead-repo: + runs-on: self-hosted + if: "!contains(github.event.head_commit.message, 'ci skip')" + steps: + - uses: actions/checkout@v3 + - uses: ./.github/actions/bitbake-repo + with: + repo_release: 'styhead' + + styhead-raspberrypi3-mesa-weston-wpe-2-46: + runs-on: self-hosted + if: "!contains(github.event.head_commit.message, 'ci skip')" + steps: + - uses: actions/checkout@v3 + - uses: ./.github/actions/bitbake-build + with: + bitbake_source: 'raspberrypi3-mesa-wpe-2-46 raspberrypi3-mesa poky layers.raspberrypi.webkit conf_v4.wpe-2_46' + repo_release: 'styhead' + needs: styhead-repo