mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
CI: exploit concurrency (#2687)
Co-authored-by: Wilson Snyder <wsnyder@wsnyder.org>
This commit is contained in:
parent
1124829500
commit
6e3de7bfd1
152
.github/workflows/build.yml
vendored
152
.github/workflows/build.yml
vendored
@ -11,67 +11,127 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * 0' # weekly
|
- cron: '0 0 * * 0' # weekly
|
||||||
|
|
||||||
|
env:
|
||||||
|
CI_OS_NAME: linux
|
||||||
|
CI_COMMIT: ${{ github.sha }}
|
||||||
|
CCACHE_COMPRESS: 1
|
||||||
|
CCACHE_DIR: ${{ github.workspace }}/.ccache
|
||||||
|
CCACHE_MAXSIZE: 2Gi # 2GiB for clang and gcc, 4GiB in total
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
vlt:
|
|
||||||
|
Matrix:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Generate Build matrix
|
||||||
|
outputs:
|
||||||
|
matrix: ${{ steps.generate.outputs.matrix }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- id: generate
|
||||||
|
name: Run 'generate_matrix.sh'
|
||||||
|
run: |
|
||||||
|
if [ '${{ github.event_name}}' = 'pull_request' ]; then
|
||||||
|
matrix='[ "ubuntu-20.04" ]'
|
||||||
|
else
|
||||||
|
matrix='[ "ubuntu-16.04", "ubuntu-18.04", "ubuntu-20.04" ]'
|
||||||
|
fi
|
||||||
|
echo "::set-output name=matrix::$matrix"
|
||||||
|
|
||||||
|
|
||||||
|
Build:
|
||||||
|
needs: Matrix
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
os: ${{ fromJson(needs.Matrix.outputs.matrix) }}
|
||||||
|
debug: [ opt, dbg ]
|
||||||
|
compiler:
|
||||||
- { cc: clang, cxx: clang++ }
|
- { cc: clang, cxx: clang++ }
|
||||||
- { cc: gcc, cxx: g++ }
|
- { cc: gcc, cxx: g++ }
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ${{ matrix.os }}
|
||||||
name: Ubuntu 20.04 | ${{ matrix.cc }} | build-test
|
name: Build | ${{ matrix.os }} | ${{ matrix.compiler.cc }} | ${{ matrix.debug }}
|
||||||
env:
|
env:
|
||||||
CI_OS_NAME: linux
|
CI_BUILD_STAGE_NAME: build
|
||||||
CI_RUNS_ON: ubuntu-20.04
|
CI_RUNS_ON: ${{ matrix.os }}
|
||||||
CI_COMMIT: ${{ github.sha }}
|
CI_MAKE_SRC_TARGET: ${{ matrix.debug }}
|
||||||
CCACHE_COMPRESS: 1
|
CC: ${{ matrix.compiler.cc }}
|
||||||
CCACHE_DIR: ${{ github.workspace }}/.ccache
|
CXX: ${{ matrix.compiler.cxx }}
|
||||||
CCACHE_MAXSIZE: 2Gi # 2GiB for clang and gcc, 4GiB in total
|
CACHE_KEY: ${{ matrix.os }}-${{ matrix.compiler.cc }}
|
||||||
CC: ${{ matrix.cc }}
|
|
||||||
CXX: ${{ matrix.cxx }}
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
env:
|
env:
|
||||||
cache-name: ccache
|
cache-name: ccache
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/.ccache
|
path: ${{ github.workspace }}/.ccache
|
||||||
key: ubuntu-20.04-${{ matrix.cc }}-${{ env.cache-name }}-${{ github.sha }}
|
key: ${{ env.CACHE_KEY }}-${{ env.cache-name }}-${{ github.sha }}
|
||||||
restore-keys: |
|
restore-keys: ${{ env.CACHE_KEY }}-${{ env.cache-name }}
|
||||||
ubuntu-20.04-${{ matrix.cc }}-${{ env.cache-name }}
|
|
||||||
|
|
||||||
- name: Install packages for build
|
- name: Install packages for build
|
||||||
env:
|
run: ./ci/ci-install.bash
|
||||||
CI_BUILD_STAGE_NAME: build
|
|
||||||
run: bash ci/ci-install.bash
|
|
||||||
|
|
||||||
- name: CCACHE maintenance
|
- name: Build
|
||||||
run: mkdir -p $CCACHE_DIR && bash ci/ci-ccache-maint.bash
|
run: |
|
||||||
|
./ci/ci-script.bash
|
||||||
|
tar cvzf verilator-${{ matrix.os}}-${CI_COMMIT}-${{ matrix.compiler.cc }}-${{ matrix.debug }}.tgz ./bin
|
||||||
|
|
||||||
- name: Build
|
- uses: actions/upload-artifact@v2
|
||||||
env:
|
with:
|
||||||
CI_BUILD_STAGE_NAME: build
|
path: verilator-${{ matrix.os}}-${{ env.CI_COMMIT }}-${{ matrix.compiler.cc }}-${{ matrix.debug }}.tgz
|
||||||
run: bash ci/ci-script.bash
|
|
||||||
|
|
||||||
- name: Install packages for tests
|
|
||||||
env:
|
|
||||||
CI_BUILD_STAGE_NAME: test
|
|
||||||
run: bash ci/ci-install.bash
|
|
||||||
|
|
||||||
- name: Test
|
Test:
|
||||||
env:
|
needs: [ Matrix, Build ]
|
||||||
CI_BUILD_STAGE_NAME: test
|
strategy:
|
||||||
run: |
|
fail-fast: false
|
||||||
for item in dist-vlt-0 dist-vlt-1 vltmt-0 vltmt-1; do
|
max-parallel: 8
|
||||||
echo "::group::${item}"
|
matrix:
|
||||||
|
os: ${{ fromJson(needs.Matrix.outputs.matrix) }}
|
||||||
|
compiler:
|
||||||
|
- { cc: clang, cxx: clang++ }
|
||||||
|
- { cc: gcc, cxx: g++ }
|
||||||
|
suite:
|
||||||
|
- dist-vlt-0
|
||||||
|
- dist-vlt-1
|
||||||
|
- vltmt-0
|
||||||
|
- vltmt-1
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
name: Test | ${{ matrix.os }} | ${{ matrix.compiler.cc }} | ${{ matrix.suite }}
|
||||||
|
env:
|
||||||
|
CI_BUILD_STAGE_NAME: test
|
||||||
|
CI_RUNS_ON: ${{ matrix.os }}
|
||||||
|
CC: ${{ matrix.compiler.cc }}
|
||||||
|
CXX: ${{ matrix.compiler.cxx }}
|
||||||
|
CACHE_KEY: ${{ matrix.os }}-${{ matrix.compiler.cc }}
|
||||||
|
steps:
|
||||||
|
|
||||||
TESTS="${item}" bash ci/ci-script.bash
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
echo '::endgroup::'
|
- name: Cache
|
||||||
done
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: ccache
|
||||||
|
with:
|
||||||
|
path: ${{ github.workspace }}/.ccache
|
||||||
|
key: ${{ env.CACHE_KEY }}-${{ env.cache-name }}-${{ github.sha }}
|
||||||
|
restore-keys: ${{ env.CACHE_KEY }}-${{ env.cache-name }}
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v2
|
||||||
|
|
||||||
|
- name: Install Verilator and test dependencies
|
||||||
|
run: |
|
||||||
|
tar xvzf artifact/verilator-${{ matrix.os}}-${CI_COMMIT}-${{ matrix.compiler.cc }}-opt.tgz
|
||||||
|
tar xvzf artifact/verilator-${{ matrix.os}}-${CI_COMMIT}-${{ matrix.compiler.cc }}-dbg.tgz
|
||||||
|
rm -rf artifact
|
||||||
|
./ci/ci-install.bash
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
env:
|
||||||
|
TESTS: ${{ matrix.suite }}
|
||||||
|
run: ./ci/ci-script.bash
|
||||||
|
55
.github/workflows/coverage.yml
vendored
55
.github/workflows/coverage.yml
vendored
@ -15,27 +15,47 @@ env:
|
|||||||
CCACHE_DIR: ${{ github.workspace }}/.ccache
|
CCACHE_DIR: ${{ github.workspace }}/.ccache
|
||||||
CCACHE_MAXSIZE: 2Gi # 2GiB for clang and gcc, 4GiB in total
|
CCACHE_MAXSIZE: 2Gi # 2GiB for clang and gcc, 4GiB in total
|
||||||
COVERAGE: 1
|
COVERAGE: 1
|
||||||
CI_BUILD_STAGE_NAME: test
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
buildjob:
|
|
||||||
|
Build:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
env:
|
||||||
|
CI_BUILD_STAGE_NAME: build
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
env:
|
env:
|
||||||
cache-name: ccache
|
cache-name: ccache
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/.ccache
|
path: ${{ github.workspace }}/.ccache
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
||||||
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"
|
- name: Install dependencies for build
|
||||||
|
env:
|
||||||
|
CI_BUILD_STAGE_NAME: build
|
||||||
|
run: ./ci/ci-install.bash
|
||||||
|
|
||||||
|
- name: Build Verilator
|
||||||
|
run: |
|
||||||
|
./ci/ci-script.bash
|
||||||
|
|
||||||
|
mkdir tarball/
|
||||||
|
cp -vr bin tarball/
|
||||||
|
cp -vr src/obj*/*.gcno tarball/
|
||||||
|
tar cvzf verilator-${CI_COMMIT}.tgz -C ./tarball .
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
path: verilator-${{ env.CI_COMMIT }}.tgz
|
||||||
|
|
||||||
|
|
||||||
test:
|
Test:
|
||||||
needs: buildjob
|
needs: Build
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@ -51,15 +71,28 @@ jobs:
|
|||||||
- { test: dist, num: '' }
|
- { test: dist, num: '' }
|
||||||
name: test-${{ matrix.test }}${{ matrix.num }}
|
name: test-${{ matrix.test }}${{ matrix.num }}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
env:
|
||||||
|
CI_BUILD_STAGE_NAME: test
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
env:
|
env:
|
||||||
cache-name: ccache
|
cache-name: ccache
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/.ccache
|
path: ${{ github.workspace }}/.ccache
|
||||||
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
key: coverage-${{ env.cache-name }}-${{ github.sha }}
|
||||||
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"
|
- uses: actions/download-artifact@v2
|
||||||
- run: bash -c "TESTS=coverage-${{ matrix.test }}${{ matrix.num }} ci/ci-script.bash"
|
|
||||||
|
- name: Install Verilator and test dependencies
|
||||||
|
run: |
|
||||||
|
tar xvzf artifact/verilator-${CI_COMMIT}.tgz
|
||||||
|
./ci/ci-install.bash
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
env:
|
||||||
|
TESTS: coverage-${{ matrix.test }}${{ matrix.num }}
|
||||||
|
run: ./ci/ci-script.bash
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,6 +16,7 @@
|
|||||||
*.pdf
|
*.pdf
|
||||||
/Makefile
|
/Makefile
|
||||||
/.ccache
|
/.ccache
|
||||||
|
/artifact/
|
||||||
README
|
README
|
||||||
TAGS
|
TAGS
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
|
@ -219,7 +219,7 @@ all_nomsg: verilator_exe $(VL_INST_MAN_FILES)
|
|||||||
verilator_exe verilator_bin verilator_bin_dbg verilator_coverage_bin_dbg:
|
verilator_exe verilator_bin verilator_bin_dbg verilator_coverage_bin_dbg:
|
||||||
@echo ------------------------------------------------------------
|
@echo ------------------------------------------------------------
|
||||||
@echo "making verilator in src"
|
@echo "making verilator in src"
|
||||||
$(MAKE) -C src $(OBJCACHE_JOBS)
|
$(MAKE) -C src $(OBJCACHE_JOBS) $(CI_MAKE_SRC_TARGET)
|
||||||
|
|
||||||
.PHONY:msg_test
|
.PHONY:msg_test
|
||||||
msg_test: all_nomsg
|
msg_test: all_nomsg
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# DESCRIPTION: Verilator: CI main job script
|
|
||||||
#
|
|
||||||
# Copyright 2020 by Geza Lore. This program is free software; you
|
|
||||||
# can redistribute it and/or modify it under the terms of either the GNU
|
|
||||||
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
||||||
# Version 2.0.
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
||||||
|
|
||||||
echo "::group::build's ci-install"
|
|
||||||
export CI_BUILD_STAGE_NAME=build
|
|
||||||
bash ci/ci-install.bash
|
|
||||||
echo "::endgroup"
|
|
||||||
|
|
||||||
echo "::group::build's ci-script"
|
|
||||||
mkdir -p $CCACHE_DIR && bash ci/ci-ccache-maint.bash
|
|
||||||
bash ci/ci-script.bash
|
|
||||||
echo "::endgroup"
|
|
||||||
|
|
||||||
echo "::group::test's ci-install"
|
|
||||||
export CI_BUILD_STAGE_NAME=test
|
|
||||||
bash ci/ci-install.bash
|
|
||||||
echo "::endgroup"
|
|
@ -17,6 +17,8 @@
|
|||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
cd $(dirname "$0")/..
|
||||||
|
|
||||||
fatal() {
|
fatal() {
|
||||||
echo "ERROR: $(basename "$0"): $1" >&2; exit 1;
|
echo "ERROR: $(basename "$0"): $1" >&2; exit 1;
|
||||||
}
|
}
|
||||||
@ -66,6 +68,8 @@ if [ "$CI_BUILD_STAGE_NAME" = "build" ]; then
|
|||||||
else
|
else
|
||||||
fatal "Unknown os: '$CI_OS_NAME'"
|
fatal "Unknown os: '$CI_OS_NAME'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
mkdir -p "$CCACHE_DIR" && ./ci/ci-ccache-maint.bash
|
||||||
elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then
|
elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Dependencies of jobs in the 'test' stage, i.e.: packages required to
|
# Dependencies of jobs in the 'test' stage, i.e.: packages required to
|
||||||
@ -96,6 +100,9 @@ elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then
|
|||||||
fi
|
fi
|
||||||
yes yes | sudo cpan -M $CI_CPAN_REPO -fi Unix::Processors Parallel::Forker
|
yes yes | sudo cpan -M $CI_CPAN_REPO -fi Unix::Processors Parallel::Forker
|
||||||
install-vcddiff
|
install-vcddiff
|
||||||
|
|
||||||
|
autoconf
|
||||||
|
./configure --enable-longtests --enable-ccwarn
|
||||||
else
|
else
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Unknown build stage
|
# Unknown build stage
|
||||||
|
@ -79,13 +79,16 @@ elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then
|
|||||||
export VERILATOR_TEST_NO_GPROF=1 # gprof is a bit different on FreeBSD, disable
|
export VERILATOR_TEST_NO_GPROF=1 # gprof is a bit different on FreeBSD, disable
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Run sanitize on Ubuntu 20.04 only
|
||||||
|
[ "$CI_RUNS_ON" = 'ubuntu-20.04' ] && sanitize='--sanitize' || sanitize=''
|
||||||
|
|
||||||
# Run the specified test
|
# Run the specified test
|
||||||
case $TESTS in
|
case $TESTS in
|
||||||
dist-vlt-0)
|
dist-vlt-0)
|
||||||
"$MAKE" -C test_regress SCENARIOS="--dist --vlt --sanitize" DRIVER_HASHSET=--hashset=0/2
|
"$MAKE" -C test_regress SCENARIOS="--dist --vlt $sanitize" DRIVER_HASHSET=--hashset=0/2
|
||||||
;;
|
;;
|
||||||
dist-vlt-1)
|
dist-vlt-1)
|
||||||
"$MAKE" -C test_regress SCENARIOS="--dist --vlt --sanitize" DRIVER_HASHSET=--hashset=1/2
|
"$MAKE" -C test_regress SCENARIOS="--dist --vlt $sanitize" DRIVER_HASHSET=--hashset=1/2
|
||||||
;;
|
;;
|
||||||
vltmt-0)
|
vltmt-0)
|
||||||
"$MAKE" -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=0/2
|
"$MAKE" -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=0/2
|
||||||
|
Loading…
Reference in New Issue
Block a user