forked from lsds/sgx-lkl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (32 loc) · 839 Bytes
/
.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
language: c
git:
submodules: false
matrix:
include:
- name: "Hardware Release"
env:
- TARGET=
- DEBUG=false
- name: "Hardware Debug"
env:
- TARGET=
- DEBUG=true
- name: "Simulation Release"
env:
- TARGET=sim
- DEBUG=false
- name: "Simulation Debug"
env:
- TARGET=sim
- DEBUG=true
- name: "Release"
env:
- TARGET=
- DEBUG=false
- RELEASE=true
dist: xenial
compiler: gcc
before_install:
- travis_wait 45 git submodule update --init --recursive
- sudo apt-get install make gcc g++ bc python xutils-dev bison flex libgcrypt20-dev libjson-c-dev autopoint pkgconf autoconf libtool libcurl4-openssl-dev libprotobuf-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler libssl-dev -y
script: make $TARGET DEBUG=$DEBUG RELEASE=$RELEASE