CI: Run coverage with SystemC

This commit is contained in:
Wilson Snyder 2021-03-28 11:47:45 -04:00
parent e9b5721fb0
commit f39318bde5

View File

@ -20,15 +20,11 @@ jobs:
Build: Build:
strategy: runs-on: ubuntu-20.04
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
env: env:
CI_BUILD_STAGE_NAME: build CI_BUILD_STAGE_NAME: build
CI_RUNS_ON: ${{ matrix.os }} CI_RUNS_ON: ubuntu-20.04
CACHE_KEY: ${{ matrix.os }}-${{ matrix.compiler.cc }}-coverage CACHE_KEY: ubuntu-20.04-${{ matrix.compiler.cc }}-coverage
steps: steps:
- name: Checkout - name: Checkout
@ -63,19 +59,18 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-20.04 ]
test: test:
- vlt- - vlt-
- vltmt- - vltmt-
num: [ 0 1 2 3 4 5 6 7 8 9 ] num: [ 0 1 2 3 4 5 6 7 8 9 ]
include: include:
- { test: dist, num: '' } - { test: dist, num: '' }
runs-on: ${{ matrix.os }} runs-on: ubuntu-20.04
name: test-${{ matrix.test }}${{ matrix.num }} name: test-${{ matrix.test }}${{ matrix.num }}
env: env:
CI_BUILD_STAGE_NAME: test CI_BUILD_STAGE_NAME: test
CI_RUNS_ON: ${{ matrix.os }} CI_RUNS_ON: ubuntu-20.04
CACHE_KEY: ${{ matrix.os }}-${{ matrix.compiler.cc }}-coverage CACHE_KEY: ubuntu-20.04-${{ matrix.compiler.cc }}-coverage
steps: steps:
- name: Checkout - name: Checkout