forked from ant-media/Ant-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
170 lines (149 loc) · 6.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
dist: bionic
language: java
jdk:
- openjdk11
git:
depth: false
# Sonar cloud addons on travis has some issues so that it's used directly
addons:
sonarcloud:
organization: "ant-media"
token: $SONAR_TOKEN
before_install:
- openssl aes-256-cbc -K $encrypted_5fef4fa28306_key -iv $encrypted_5fef4fa28306_iv -in codesigning.asc.enc -out codesigning.asc -d
- export GPG_TTY=$(tty) #-> https://github.com/keybase/keybase-issues/issues/2798
- gpg2 --batch --fast-import codesigning.asc
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
- echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
- sudo apt-get update -qq
#install mongodb ffmpeg wondershaper
- sudo apt-get install mongodb-org ffmpeg wondershaper -qq -y
- sudo service mongod start # start mongo db
- sudo git clone --depth=1 https://github.com/ant-media/utilities.git /usr/local/onvif
# get parent project
- (if [ $(git ls-remote https://github.com/ant-media/ant-media-server-parent.git $TRAVIS_BRANCH | wc -l) == "1" ];
then
echo " $TRAVIS_BRANCH branch found";
git clone --depth=1 -b $TRAVIS_BRANCH https://github.com/ant-media/ant-media-server-parent.git;
else
echo "branch not found";
git clone --depth=1 https://github.com/ant-media/ant-media-server-parent.git;
fi)
- cd ant-media-server-parent
- mvn clean install -DskipTests -Dmaven.javadoc.skip=true -Dgpg.skip=true --quiet
- cd ..
#get common project
- (if [ $(git ls-remote https://github.com/ant-media/Ant-Media-Server-Common.git $TRAVIS_BRANCH | wc -l) == "1" ];
then
echo " $TRAVIS_BRANCH branch found";
git clone --depth=1 -b $TRAVIS_BRANCH https://github.com/ant-media/Ant-Media-Server-Common.git;
else
echo "branch not found";
git clone --depth=1 https://github.com/ant-media/Ant-Media-Server-Common.git;
fi)
- cd Ant-Media-Server-Common
- mvn clean install -DskipTests -Dmaven.javadoc.skip=true -Dgpg.skip=true --quiet
- cd ..
#get service project
- (if [ $(git ls-remote https://github.com/ant-media/Ant-Media-Server-Service.git $TRAVIS_BRANCH | wc -l) == "1" ];
then
echo " $TRAVIS_BRANCH branch found";
git clone --depth=1 -b $TRAVIS_BRANCH https://github.com/ant-media/Ant-Media-Server-Service.git;
cd Ant-Media-Server-Service;
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V --quiet;
cd ..;
else
echo "branch not found. Using version in sonatype";
fi)
#get red5-plugins project
- (if [ $(git ls-remote https://github.com/ant-media/red5-plugins.git $TRAVIS_BRANCH | wc -l) == "1" ];
then
echo " $TRAVIS_BRANCH branch found";
git clone --depth=1 -b $TRAVIS_BRANCH https://github.com/ant-media/red5-plugins.git;
else
echo "branch not found";
git clone --depth=1 https://github.com/ant-media/red5-plugins.git;
fi)
- cd red5-plugins/tomcat/
- mvn clean install -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -Dgpg.skip=true --quiet
- cd ../..
- mvn clean package -U -P assemble -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -DskipTests=true --quiet
#get install script
- (if [ $(git ls-remote https://github.com/ant-media/Scripts.git $TRAVIS_BRANCH | wc -l) == "1" ];
then
echo " $TRAVIS_BRANCH branch found";
wget https://raw.githubusercontent.com/ant-media/Scripts/$TRAVIS_BRANCH/install_ant-media-server.sh -O target/install_ant-media-server.sh;
else
echo "branch not found";
wget https://raw.githubusercontent.com/ant-media/Scripts/master/install_ant-media-server.sh -O target/install_ant-media-server.sh;
fi)
- chmod 755 target/install_ant-media-server.sh
- cd target
- ./install_ant-media-server.sh ant-media-server-community*.zip
- cd ..
- echo "Waiting a little to make sure server is started "
- sleep 20
- (if [[ -f /usr/local/antmedia/log/antmedia-error.log ]];
then
sudo cat /usr/local/antmedia/log/antmedia-error.log;
fi)
- sudo cat /usr/local/antmedia/log/ant-media-server.log
- sudo cp src/test/resources/preset-red5-web.properties /usr/local/antmedia/webapps/LiveApp/WEB-INF/red5-web.properties
- sudo cp src/test/resources/preset-red5-web.db /usr/local/antmedia/liveapp.db
- sudo sed -i 's^server.cpu_limit=.*^server.cpu_limit=100^' /usr/local/antmedia/conf/red5.properties
- sudo service antmedia stop
- sudo service antmedia start
- sleep 10
- sudo cat /usr/local/antmedia/log/ant-media-server.log
install:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V --quiet
before_script:
- sudo chmod -R 777 /tmp
script:
- export RELEASE_VERSION="$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec)"
- echo $RELEASE_VERSION
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package org.jacoco:jacoco-maven-plugin:report sonar:sonar -Dmaven.javadoc.skip=true
# option to add above (-Dtest="MuxerUnitTest") for running custom tests
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
after_failure:
- sudo cat /usr/local/antmedia/log/ant-media-server.log
- sudo cat /usr/local/antmedia/hs_err_pid*.log # cat hs_err_pid file if it exists
- sudo cat hs_err_pid*.log # cat hs_err_pid file if it exists
deploy:
- provider: script
script: "mvn deploy -P assemble -DskipTests --settings mvn-settings.xml"
cleanup: true
on:
tags: false
all_branches: true
#deploy all branches to mvn if it is a snapshot version
condition: $(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec) = *"SNAPSHOT"*
- provider: script
script: "mvn deploy -P assemble -DskipTests --settings mvn-settings.xml"
cleanup: true
on:
#deploy to maven if it is a release tagged
tags: true
condition: $TRAVIS_TAG =~ ^ams-v
- provider: script
script: "curl -g --ftp-create-dirs -T target/swagger/swagger.json -u $SWAGGER_FTP_USERNAME:$SWAGGER_FTP_PASSWORD $SWAGGER_FTP_URL/$RELEASE_VERSION/"
cleanup: true
on:
#deploy to website if it is a release tagged
tags: true
condition: $TRAVIS_TAG =~ ^ams-v
- provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file_glob: true
file: "target/ant-media-server-community*.zip"
skip_cleanup: true
name: "Ant Media Server Community $(date +'%F-%T')"
prerelease: true
on:
#deploy to github if it is a release tagged
tags: true
condition: $TRAVIS_TAG =~ ^ams-v
#above configuration prevents deploying a new release(not snapshot) if it is not tagged