ci: merge job Matrix-Surelog into Matrix
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
be210fbebc
commit
a3023c65d6
|
@ -10,6 +10,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.generate.outputs.matrix }}
|
matrix: ${{ steps.generate.outputs.matrix }}
|
||||||
|
surelog-matrix: ${{ steps.generate-surelog.outputs.matrix }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
@ -20,6 +21,10 @@ jobs:
|
||||||
id: generate
|
id: generate
|
||||||
run: ./.github/scripts/generate_job_matrix.py '${{ github.repository }}'
|
run: ./.github/scripts/generate_job_matrix.py '${{ github.repository }}'
|
||||||
|
|
||||||
|
- name: Generate examples matrix
|
||||||
|
id: generate-surelog
|
||||||
|
run: ./.github/scripts/generate_job_matrix.py '${{ github.repository }}' Surelog
|
||||||
|
|
||||||
|
|
||||||
Test:
|
Test:
|
||||||
needs: Matrix
|
needs: Matrix
|
||||||
|
@ -75,26 +80,13 @@ jobs:
|
||||||
**/*.bit
|
**/*.bit
|
||||||
**/plot_*.svg
|
**/plot_*.svg
|
||||||
|
|
||||||
Matrix-Surelog:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
matrix: ${{ steps.generate.outputs.matrix }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Setup repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Generate examples matrix
|
|
||||||
id: generate
|
|
||||||
run: ./.github/scripts/generate_job_matrix.py '${{ github.repository }}' Surelog
|
|
||||||
|
|
||||||
Test-Surelog:
|
Test-Surelog:
|
||||||
needs: Matrix-Surelog
|
needs: Matrix
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include: ${{ fromJson(needs.Matrix-Surelog.outputs.matrix) }}
|
include: ${{ fromJson(needs.Matrix.outputs.surelog-matrix) }}
|
||||||
runs-on: ${{ matrix.runs-on }}
|
runs-on: ${{ matrix.runs-on }}
|
||||||
name: Surelog frontend - ${{ matrix.fpga-fam }} | ${{ matrix.os }} ${{ matrix.os-version }} | ${{ matrix.example }}
|
name: Surelog frontend - ${{ matrix.fpga-fam }} | ${{ matrix.os }} ${{ matrix.os-version }} | ${{ matrix.example }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue