[pmp] Use top-level straps for PMP reset values #178
Workflow file for this run
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 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: | |
contents: write # For repository dispatch | |
jobs: | |
trigger: | |
name: Trigger Private CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Private CI | |
run: | | |
PAYLOAD='"target":"${{ github.repository_owner }}/lowrisc-private-ci/master/ibex-private-ci.yml","sha":"${{ github.event.pull_request.head.sha || github.sha }}"' | |
if ${{ github.event_name == 'pull_request_target' }}; then | |
PAYLOAD+=',"pull_request":${{ github.event.pull_request.number }}' | |
fi | |
curl -fL \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ github.token }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/${{ github.repository }}/dispatches \ | |
-d '{"event_type":"cross-repo-ci","client_payload":{'"$PAYLOAD"'}}' |