forked from ph4r05/Whitebox-crypto-AES
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
57 lines (49 loc) · 1.91 KB
/
.travis.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# see http://about.travis-ci.org/docs/user/languages/cpp/ for more hints
language: cpp
# Use container based infrastructure for Travis
sudo: false
# Test against both compilers
compiler:
- clang
- gcc
cache:
directories:
- $HOME/ntl
# Coverity
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "GjngtCbY8kqx9z5Aq9miC94Ya6siaEDJd0kKnUm5wsXvyvDBsBoNdWgE9tPk3KAtbavp5BPbMfZhAfDq0L68cDwDYwkO4l47Q4BDC5xRXHfT88TVOJMj+0QCYPtsvXwDGbQVYtPIfaNqnbYs92LZtZnlIXwkPu9Upf09apY1u6JJFfbziGuRnkV27JV9P9KanLg28m5666+33OoFK7wIzTFXE2bwX7Um9pyx1j2i376ULvTexZ21Y6NJL2z0hv+DKQfFRLA1Hf80FtkcPgssGhlQpPMCPuxDgt3MLaGkunfGRijJFOYlzyWwjlwv7rodai1oFYGJACDTRLDgEWHUGZ5X0m4hW7yYwkjYMgZEZeL78AnvIjHQSc6sdyqEy39rwWc3Celi26ut1xwm9Qbi6WAZxMqsHT4nE6sry1H5j+Y942xBL0i62Xn7iuPo6kbZN2ehZS3JeAn7BmoV0i533cUaKyDFUe/mmkKF+GETTdNYzlQnxZoxDWwjdFWRHXTxYh2C/J7sAC4RJ5Bo4L6/bEwSgjvqHdKNTWce5Y4c+h+UL80ZWr4QM4MrpI/hELqUSMlcFhq6i7Hep0gr3za7GEKf3oL+jmQa+Ip5GnWcX9F9rBAMbLQhMY4fSOBDOTvyaSa9UdpUbzNACBFf1G9tjvMQReObuL/IbowBy1zTcjA="
# https://docs.travis-ci.com/user/migrating-from-legacy
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
- george-edison55-precise-backports
packages:
- build-essential
- autoconf
- cmake
- cmake-data
- libboost-program-options1.55-dev
- libboost-serialization1.55-dev
- libboost-iostreams1.55-dev
- libboost-random1.55-dev
coverity_scan:
project:
name: "ph4r05/Whitebox-crypto-AES"
description: "<Your project description here>"
notification_email: [email protected]
build_command_prepend: bash install-ntl-cached.sh
build_command: bash build.sh
branch_pattern: coverity_scan
before_install:
- echo $LANG
- echo $LC_ALL
- bash install-ntl-cached.sh
script:
- ls -las
- ls -las $HOME/ntl
- bash build.sh