diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-09-25 09:38:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 09:38:26 +0800 |
commit | 75f107fe3b59274e6be072320a1b59420b5447d8 (patch) | |
tree | 8c36daba3c668427036acd9f5feef83b88f95718 /.travis.yml | |
parent | 1c36a87da5bbc1cd6dc0e9d9c0e5fbf2e4640dad (diff) | |
parent | a6d13780f138b33169c748b25a41f7d94ab620ee (diff) | |
download | dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar.gz dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar.bz2 dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar.lz dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar.xz dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.tar.zst dexon-bls-75f107fe3b59274e6be072320a1b59420b5447d8.zip |
Merge pull request #15 from Spiderpowa/ci
Modify Travis CI build script.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 81fa0eb..403c433 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,17 @@ -sudo: required +sudo: false dist: trusty language: cpp compiler: - gcc - clang -before_install: - - sudo apt install -y libgmp-dev +addons: + apt: + packages: + - libgmp-dev +install: + - git clone --depth 1 https://github.com/herumi/mcl.git $TRAVIS_BUILD_DIR/../mcl script: - - git clone --depth 1 https://github.com/herumi/mcl.git - - git clone --depth 1 https://github.com/herumi/bls.git - - cd bls - - make + - make -j3 - make test DISABLE_THREAD_TEST=1 - make test_go - bin/bls_c384_test.exe |