aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 6af3a6499d532640e0ed6f84023f1f5623d5c9f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 test_ci -j3 test DISABLE_THREAD_TEST=1 MCL_USE_OPENSSL=0