forked from kaltura/nginx-vod-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci_build.sh
executable file
·63 lines (58 loc) · 2.24 KB
/
ci_build.sh
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
#!/bin/sh
set -eo nounset # Treat unset variables as an error
BASE_DOWNLOAD_URI=http://nginx.org/download
NGINX_VERSION=`curl -L "$BASE_DOWNLOAD_URI" |
grep -oP 'href="nginx-\K[0-9]+\.[0-9]+\.[0-9]+' |
sort -t. -rn -k1,1 -k2,2 -k3,3 | head -1`
NGINX_URI="$BASE_DOWNLOAD_URI/nginx-$NGINX_VERSION.tar.gz"
if [ ! -x "`which curl 2>/dev/null`" ];then
echo "Need to install curl."
exit 2
fi
mkdir -p /tmp/builddir/nginx-$NGINX_VERSION
cp -r . /tmp/builddir/nginx-$NGINX_VERSION/nginx-vod-module
cd /tmp/builddir
curl $NGINX_URI > kaltura-nginx-$NGINX_VERSION.tar.gz
tar zxf kaltura-nginx-$NGINX_VERSION.tar.gz
mv nginx-$NGINX_VERSION nginx
cd nginx
FFMPEG_VERSION=4.2.2
LD_LIBRARY_PATH=/opt/kaltura/ffmpeg-$FFMPEG_VERSION/lib
LIBRARY_PATH=/opt/kaltura/ffmpeg-$FFMPEG_VERSION/lib
C_INCLUDE_PATH=/opt/kaltura/ffmpeg-$FFMPEG_VERSION/include
export LD_LIBRARY_PATH LIBRARY_PATH C_INCLUDE_PATH
./configure \
--prefix=/etc/nginx \
--sbin-path=/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/log/nginx/error.log \
--http-log-path=/var/log/log/nginx/access.log \
--pid-path=/var/log/run/nginx.pid \
--lock-path=/var/log/run/nginx.lock \
--http-client-body-temp-path=/var/log/cache/nginx/client_temp \
--http-proxy-temp-path=/var/log/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/log/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/log/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/log/cache/nginx/scgi_temp \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-debug \
--with-threads \
--with-cc-opt="-O3 -mpopcnt" \
$*
make -j $(nproc)