Files
chipyard/.github/actions/run-tests/action.yml
2021-10-07 19:42:50 -07:00

21 lines
488 B
YAML

name: run-tests
description: 'Runs tests according to input parameters'
inputs:
project-key:
description: project key
required: true
run-script:
description: rtl build script to use
required: false
default: "run-tests.sh"
runs:
using: "composite"
steps:
- name: run rtl build script cache of chipyard root should have been loaded by prepare-rtl
run: |
./.github/scripts/${{ inputs.run-script }} ${{ inputs.project-key }}
shell: bash