diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-09-25 16:35:39 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-09-25 16:35:39 +0800 |
commit | 97f8bd4ca2f518c67a4905800d16c83c942cd962 (patch) | |
tree | 52d1a4169d1a6a9ba510256a6ceab6b14efc9b12 | |
parent | a88d43df8e71dcab1a3a8af4e087c628f0adf922 (diff) | |
download | dexon-mcl-97f8bd4ca2f518c67a4905800d16c83c942cd962.tar.gz dexon-mcl-97f8bd4ca2f518c67a4905800d16c83c942cd962.tar.zst dexon-mcl-97f8bd4ca2f518c67a4905800d16c83c942cd962.zip |
sudo:false for travis
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 981f16d..4e8f745 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,14 @@ -sudo: required +sudo: false dist: trusty language: cpp compiler: - gcc - clang -before_install: - - sudo apt install -y libgmp-dev +addons: + apt: + packages: + - libgmp-dev script: - - make test DEBUG=1 - - make clean + - make test DEBUG=1 -j3 - make test_go |