21 lines
488 B
YAML
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
|
|
|