forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (64 loc) · 1.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: c
sudo: false
os:
- linux
dist: xenial
addons:
apt:
packages:
- autoconf
- libncurses-dev
- build-essential
- libssl-dev
- libwxgtk3.0-dev
- libglu1-mesa-dev
- default-jdk
- g++
- xsltproc
- libxml2-utils
matrix:
include:
# Doc build second as it also takes a long time to run
- env: Linux64Docbuild
script:
- ./scripts/build-otp docs
deploy:
provider: pages
repo: erlang/cd
target-branch: master
skip-cleanup: true
keep-history: false
verbose: true
github-token: $ERLANG_CD_GITHUB_TOKEN
on:
# We only deploy on pushes to branches
all_branches: true
tags: false
condition: $TRAVIS_PULL_REQUEST = "false"
repo: erlang/otp
- env: Linux-ppc64le-SmokeTest
os: linux-ppc64le
script:
- ./scripts/build-otp
- ./otp_build tests
- ./scripts/run-smoke-tests
addons:
apt:
update: true
packages:
- autoconf
- libncurses-dev
- build-essential
- libssl-dev
- libwxgtk3.0-dev
- libglu1-mesa-dev
- default-jdk
- g++
- xsltproc
- libxml2-utils
before_script:
- set -e
- export ERL_TOP=$PWD
- export PATH=$ERL_TOP/bin:$PATH
- export ERL_LIBS=''
- export MAKEFLAGS=-j4