From c9f4a329636e59acb10647333badbb31bc7512b8 Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Fri, 22 Dec 2023 13:13:34 +0000 Subject: [PATCH] [ci] introduce GitHub actions based private CI The private CI works by using workflow dispatch to trigger a CI on another repository. Pending status checks are created before calling the dispatch to indicate their queued status before they are picked up in private CI, and also serves to block merge group from success. Signed-off-by: Gary Guo --- .github/workflows/private-ci.yml | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/private-ci.yml diff --git a/.github/workflows/private-ci.yml b/.github/workflows/private-ci.yml new file mode 100644 index 0000000000..1703463086 --- /dev/null +++ b/.github/workflows/private-ci.yml @@ -0,0 +1,45 @@ +# Copyright lowRISC contributors. +# Licensed under the Apache License, Version 2.0, see LICENSE for details. +# SPDX-License-Identifier: Apache-2.0 + +name: Ibex Private CI + +on: + push: + tags: + - "*" + merge_group: + types: + - checks_requested + pull_request_target: + branches: + - "*" + +permissions: + statuses: write + +jobs: + trigger: + name: Trigger Private CI + runs-on: ubuntu-latest + steps: + # Create pending statuses to block merge group and give indication before jobs are picked up. + - name: Create pending statuses + run: | + gh api --method POST \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + /repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha || github.sha }} \ + -f state='pending' \ + -f context='Ibex Private CI' \ + -f description='Queued' + env: + GITHUB_TOKEN: ${{ github.token }} + + - name: Trigger Private CI + run: | + gh workflow run ibex-private-ci.yml --repo lowRISC/lowrisc-private-ci \ + -f ref="${{ github.event.pull_request.head.sha || github.sha }}" \ + -f sha="${{ github.event.pull_request.merge_commit_sha || github.sha }}" + env: + GITHUB_TOKEN: ${{ secrets.LOWRISC_PRIVATE_CI_PAT }}