aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 23c68d4da7c83e61263290946a60df4c3687b0a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: true
dist: trusty
language: cpp
compiler:
  - gcc
  - clang
addons:
  apt:
    packages:
      - libgmp-dev
install:
  - git clone --depth 1 https://github.com/herumi/mcl.git $TRAVIS_BUILD_DIR/../mcl
script:
  - make -j3
  - make test_ci DISABLE_THREAD_TEST=1
  - make test_go
  - bin/bls_c384_test.exe
  - make clean && make -C ../mcl clean
  - make -j3 MCL_USE_OPENSSL=0
  - make test_ci DISABLE_THREAD_TEST=1 MCL_USE_OPENSSL=0