forked from github/verilator
CI: Cleanup ci/coverage to use a matrix to define coverage jobs (#2682)
* contributors: add Unai Martinez-Corral * ci/coverage: use a matrix to define coverage jobs
This commit is contained in:
parent
b15dd3f898
commit
9a32158b5e
175
.github/workflows/coverage.yml
vendored
175
.github/workflows/coverage.yml
vendored
@ -18,9 +18,38 @@ env:
|
|||||||
CI_BUILD_STAGE_NAME: test
|
CI_BUILD_STAGE_NAME: test
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
buildjob:
|
buildjob:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: ccache
|
||||||
|
with:
|
||||||
|
path: ${{ github.workspace }}/.ccache
|
||||||
|
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
||||||
|
restore-keys: |
|
||||||
|
coverage-${{ env.cache-name }}
|
||||||
|
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
||||||
|
|
||||||
|
|
||||||
|
test:
|
||||||
|
needs: buildjob
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
test:
|
||||||
|
- vlt-
|
||||||
|
- vltmt-
|
||||||
|
num:
|
||||||
|
- 0
|
||||||
|
- 1
|
||||||
|
- 2
|
||||||
|
- 3
|
||||||
|
include:
|
||||||
|
- { test: dist, num: '' }
|
||||||
|
name: test-${{ matrix.test }}${{ matrix.num }}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -33,148 +62,4 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
coverage-${{ env.cache-name }}
|
coverage-${{ env.cache-name }}
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
||||||
|
- run: bash -c "TESTS=coverage-${{ matrix.test }}${{ matrix.num }} ci/ci-script.bash"
|
||||||
|
|
||||||
test-dist:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-dist ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vlt-0:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vlt-0 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vlt-1:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vlt-1 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vlt-2:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vlt-2 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vlt-3:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vlt-3 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vltmt-0:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vltmt-0 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vltmt-1:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vltmt-1 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vltmt-2:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vltmt-2 ci/ci-script.bash"
|
|
||||||
|
|
||||||
test-vltmt-3:
|
|
||||||
needs: buildjob
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
env:
|
|
||||||
cache-name: ccache
|
|
||||||
with:
|
|
||||||
path: ${{ github.workspace }}/.ccache
|
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
coverage-${{ env.cache-name }}
|
|
||||||
- run: bash -c "CI_BUILD_STAGE_NAME=build ci/ci-install-build.bash"
|
|
||||||
- run: bash -c "TESTS=coverage-vltmt-3 ci/ci-script.bash"
|
|
||||||
|
@ -72,6 +72,7 @@ Tobias Wölfel
|
|||||||
Todd Strader
|
Todd Strader
|
||||||
Tomasz Gorochowik
|
Tomasz Gorochowik
|
||||||
Tymoteusz Blazejczyk
|
Tymoteusz Blazejczyk
|
||||||
|
Unai Martinez-Corral
|
||||||
Victor Besyakov
|
Victor Besyakov
|
||||||
Vassilis Papaefstathiou
|
Vassilis Papaefstathiou
|
||||||
Veripool API Bot
|
Veripool API Bot
|
||||||
|
Loading…
Reference in New Issue
Block a user