forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildspec-linux-make-gcc-cov.yml
47 lines (44 loc) · 1.79 KB
/
buildspec-linux-make-gcc-cov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: 0.2
env:
variables:
# CodeBuild console doesn't display color codes correctly
TESTPL_COLOR_OUTPUT: 0
phases:
install:
runtime-versions:
java: openjdk8
commands:
- sed -i 's#/archive.ubuntu.com#/us-east-1.ec2.archive.ubuntu.com#g' /etc/apt/sources.list
- apt-get update -y
- apt-get install -y flex bison make git libwww-perl patch ccache libc6-dev-i386 jq gdb lcov curl
build:
commands:
- echo Build started on `date`
- make -C src minisat2-download
- make -C jbmc/src setup-submodules
- make -C src CXX="ccache g++" -j2 CPROVER_WITH_PROFILING=1
- make -C unit CXX="ccache g++" -j2 CPROVER_WITH_PROFILING=1
- make -C jbmc/src CXX="ccache g++" -j2 CPROVER_WITH_PROFILING=1
- make -C jbmc/unit CXX="ccache g++" -j2 CPROVER_WITH_PROFILING=1
- echo Build completed on `date`
post_build:
commands:
# codecov script creation
# If $CODEBUILD_SOURCE_VERSION starts with 'pr/', filter out pr number, if not, return empty
- VCS_PULL_REQUEST=$(echo $CODEBUILD_SOURCE_VERSION | sed '/^pr\//!d;s/^pr\///')
# If $CODEBUILD_SOURCE_VERSION is commit id, set $VCS_COMMIT_ID
- VCS_COMMIT_ID=$(echo $CODEBUILD_SOURCE_VERSION | sed -r '/^[a-z0-9]{40}$/!d')
- COV_SCRIPT=/root/.cache/codecov.sh
- if [ ! -f "$COV_SCRIPT" ]; then curl -s https://codecov.io/bash > "$COV_SCRIPT"; fi
# Run unit test
- scripts/run_test_upload_cov_report.sh unit
# Run regression tests
- scripts/run_test_upload_cov_report.sh regression
# Run regression/cbmc tests with test-cprover-smt2
- scripts/run_test_upload_cov_report.sh cproversmt2
cache:
paths:
- '/var/cache/apt/**/*'
- '/var/lib/apt/lists/**/*'
- '/root/.ccache/**/*'
- '/root/.cache/codecov.sh'