-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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 <[email protected]>
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# 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 | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const checks = [ | ||
'Icache regression', | ||
'Regression for ibex_core in config small', | ||
'Regression for ibex_core in config opentitan', | ||
'Regression for ibex_core in config maxperf-pmp', | ||
'Regression for ibex_core in config maxperf-pmp-bmbalanced', | ||
'Regression for ibex_core in config maxperf-pmp-bmfull', | ||
]; | ||
for (let check of checks) { | ||
await github.rest.repos.createCommitStatus({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
sha: "${{ github.event.pull_request.head.sha || github.sha }}", | ||
state: 'pending', | ||
description: 'Queued', | ||
context: `Ibex Private CI / ${check}` | ||
}); | ||
} | ||
- 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 }} |