-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a1105d
commit 212a84a
Showing
1 changed file
with
26 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,26 @@ | ||
name: Run UVM tests | ||
|
||
on: | ||
push: # This now triggers on pushes to any branch | ||
pull_request: # This now triggers on pull requests to any branch | ||
|
||
jobs: | ||
Extract-Buses: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
IPs: ${{ steps.set-IPs-matrix.outputs.IPs }} | ||
buses: ${{ steps.extract_buses.outputs.buses }} | ||
steps: | ||
- name: Extract Supported Buses | ||
id: extract_buses | ||
uses: efabless/EF_UVM/.github/actions/get-bus@main | ||
- name: Check Output | ||
run: echo ${{ steps.extract_buses.outputs.buses }} | ||
Run-IP-Tests: | ||
uses: efabless/EF_UVM/.github/workflows/run_IP.yaml@main | ||
needs: [Extract-Buses] | ||
with: | ||
test-names: "all_tests" | ||
name: ${{ github.event.repository.name }} | ||
buses: ${{ needs.Extract-Buses.outputs.buses }} | ||
is-ip: true |