forked from ethereum/evmjit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (32 loc) · 778 Bytes
/
.travis.yml
File metadata and controls
34 lines (32 loc) · 778 Bytes
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
language: cpp
branches:
only:
- master
- develop
os:
- linux
- osx
dist: trusty
osx_image: xcode8.2 # OSX 10.12, cmake 3.5
env:
global:
secure: "BMDgV5REY3QSGGtixMyqg8AU6iS5ABGWgrdH7IXyTuFISHjRGrATNXU+JDh4K7YjCuRaPTUj4YPyj2koDuvcYMXaf9w/1Ov6DGH/oHiKybF+D5MABoNMC9G7mhpyaXvCVxjxJmn0EZo2J/0bwTjBhv0tBsHed9opMD6J9sWv5oo="
matrix:
- BUILD_TYPE=Release
- BUILD_TYPE=Debug
cache:
ccache: true
directories:
- $TRAVIS_BUILD_DIR/deps
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then scripts/install_cmake.sh; fi
- scripts/build.sh
- cd build && ctest
- cd ..
deploy:
provider: script
script: scripts/travis_update_docs.sh
skip_cleanup: true
on:
branch: develop
condition: $TRAVIS_JOB_NUMBER == "$TRAVIS_BUILD_NUMBER.1"