Add try and exceprt if fifo_reg_offset or irq_reg_offset doesn't exist #202
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
name: Run Tests for IPs | |
on: [push] | |
jobs: | |
Prepare-IPs-Matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
IPs: ${{ steps.set-IPs-matrix.outputs.IPs }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set IPs Matrix | |
id: set-IPs-matrix | |
run: | | |
python3 ./.github/scripts/get_IPs_matrix.py | |
echo "IPs=$(python3 ./.github/scripts/get_IPs_matrix.py)" >> "$GITHUB_OUTPUT" | |
IPs: | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJSON(needs.Prepare-IPs-Matrix.outputs.IPs) }} | |
needs: [Prepare-IPs-Matrix] | |
name: ${{ matrix.IPs.name }} | |
uses: ./.github/workflows/run_IP.yaml | |
with: | |
url: ${{ matrix.IPs.url }} | |
test-names: "${{ matrix.IPs.test-names }}" | |
name: ${{ matrix.IPs.name }} | |
buses: ${{ matrix.IPs.buses }} |