forked from jitsi/jitsi-meet-electron-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
74 lines (65 loc) · 1.69 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
71
72
73
74
---
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- g++-4.8-multilib
- gcc-multilib
- libxtst-dev
- libpng++-dev
# Build matrix
os:
- linux
- osx
env:
global:
secure: <env>
matrix:
# - TRAVIS_NODE_VERSION="6" ARCH="x86"
- TRAVIS_NODE_VERSION="12" ARCH="x64"
# - BINARY_BUILDER="true" TRAVIS_NODE_VERSION="8" ARCH="x86"
# disable x86 for now because of weird errors with gyp under prebuild
matrix:
exclude:
- os: osx
env: TRAVIS_NODE_VERSION="12" ARCH="x86"
before_install:
# download node if testing x86 architecture
- >
if [[ "$ARCH" == "x86" ]]; then
BASE_URL=$(node -p "'https://nodejs.org/dist/' + process.version");
X86_FILE=$(node -p "'node-' + process.version + '-' + process.platform + '-x86'");
wget $BASE_URL/$X86_FILE.tar.gz;
tar -xf $X86_FILE.tar.gz;
nvm deactivate;
export PATH=$X86_FILE/bin:$PATH;
else
nvm install $TRAVIS_NODE_VERSION
fi;
# use g++-4.8 on Linux
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
- $CXX --version
# print versions
- echo "--------------------------"
- uname -a
- which node; file `which node`
- node --version
- node -p 'process.platform + "@" + process.arch'
- npm --version
# figure out if we should publish
- PUBLISH_BINARY=false
- echo $TRAVIS_BRANCH
- echo `git describe --tags --always HEAD`
- if [[ $TRAVIS_BRANCH == `git describe --tags --always HEAD` ]]; then PUBLISH_BINARY=true; fi;
- echo "Publishing native platform Binary Package? ->" $PUBLISH_BINARY
install:
- npm install
script:
# if publishing, do it
- >
if [[ $PUBLISH_BINARY == true ]]; then
./node_modules/.bin/prebuild --all -u $prebuild_upload;
fi;