fixup! CI: Add cheshire CI #17
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
# Copyright 2024 PULP Platform | |
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: cheshire | |
on: [push, pull_request_target] | |
jobs: | |
trigger_cheshire_ci: | |
name: Trigger Cheshire CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Cheshire | |
uses: actions/checkout@v4 | |
with: | |
repository: pulp-platform/cheshire | |
ref: cva6/pulp-v1.0.0 | |
token: ${{ secrets.CHESHIRE_TOKEN }} | |
- name: Patch Bender.lock | |
run: "sed -i \"/ cva6:/{n;s/.*/ revision: $GITHUB_SHA/;}\" Bender.lock" | |
- name: Commit ref | |
run: | | |
git checkout -b cva6-ci/$(git rev-parse --short "$GITHUB_SHA") | |
git add Bender.lock | |
git commit -m "CVA6 regression test" | |
- name: Push ref | |
run: git push |