Skip to content

Commit

Permalink
Add CI and update yaml with wishbone
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Oct 2, 2024
1 parent 46db964 commit 527f280
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/uvm_ci.yaml
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
3 changes: 2 additions & 1 deletion EF_I2C.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ info:
- comm
- i2c
bus:
- APB
- APB
- WB
type: soft
status: verified
cell_count:
Expand Down

0 comments on commit 527f280

Please sign in to comment.