forked from crytic/echidna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (52 loc) · 1.62 KB
/
.travis.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Adapted from https://github.com/ChrisPenner/haskell-stack-travis-ci
language: minimal
sudo: true
cache:
directories:
- $HOME/.ghc
- $HOME/.cabal
- $HOME/.stack
- .stack-work
- /usr/local/include
- /usr/local/lib
timeout: 1000
matrix:
fast_finish: true
include:
# Add build targets here
- env: CACHE_NAME=linux BUILD_BINARY=1
- env: CACHE_NAME=osx BUILD_BINARY=1
STACK_OPTS="--no-run-tests --extra-include-dirs=/usr/local/opt/readline/include --extra-lib-dirs=/usr/local/opt/readline/lib"
LDFLAGS=-L/usr/local/opt/readline/lib CFLAGS=-I/usr/local/opt/readline/include
os: osx
install:
- unset CC
- export PATH=$HOME/.local/bin:$PATH
- ./.travis/install-libsecp256k1.sh
- ./.travis/install-libff.sh
- ./.travis/install-ghr.sh
- ./.travis/install-stack.sh
- ./.travis/install-solc.sh
script:
- PATH=$HOME/.local/bin:$PATH
- echo "$(stack ghc -- --version) [$(stack ghc -- --print-project-git-commit-id 2> /dev/null || echo '?')]"
- GHC_OPTIONS="-Werror"
- STACK_OPTS="$STACK_OPTS --extra-include-dirs=/usr/local/include --extra-lib-dirs=/usr/local/lib"
- |
set -ex
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
run_tests_using () {
cp ~/.local/bin/$1 ~/.local/bin/solc || true
stack --no-terminal test --ghc-options="$GHC_OPTIONS" $STACK_OPTS
}
run_tests_using "solc-0.4.25"
run_tests_using "solc-0.5.7"
set +ex
after_success:
- |
# Build and ship binary
export BUILD_BINARY=true
export TRAVIS_TAG=$(git rev-parse HEAD)
./.travis/attach-binary.sh
notifications:
email: false