2019-07-10 11:32:16 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2019-10-31 09:27:28 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
2019-07-10 11:32:16 +08:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
export_or_prefix() {
|
|
|
|
export OPENRESTY_PREFIX="/usr/local/openresty-debug"
|
|
|
|
}
|
|
|
|
|
2019-09-22 06:48:05 +08:00
|
|
|
create_lua_deps() {
|
2019-10-22 13:29:20 +08:00
|
|
|
WITHOUT_DASHBOARD=1 sudo luarocks make --lua-dir=${OPENRESTY_PREFIX}/luajit rockspec/apisix-master-0.rockspec --tree=deps --only-deps --local
|
2019-09-22 06:48:05 +08:00
|
|
|
echo "Create lua deps cache"
|
|
|
|
sudo rm -rf build-cache/deps
|
|
|
|
sudo cp -r deps build-cache/
|
2019-10-22 13:29:20 +08:00
|
|
|
sudo cp rockspec/apisix-master-0.rockspec build-cache/
|
2019-09-22 06:48:05 +08:00
|
|
|
}
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
before_install() {
|
2019-07-18 07:49:03 +08:00
|
|
|
sudo cpanm --notest Test::Nginx >build.log 2>&1 || (cat build.log && exit 1)
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
|
2019-08-21 23:10:34 +08:00
|
|
|
sudo apt-get -y update --fix-missing
|
2019-07-10 11:32:16 +08:00
|
|
|
sudo apt-get -y install software-properties-common
|
|
|
|
sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main"
|
2019-08-21 23:10:34 +08:00
|
|
|
sudo add-apt-repository -y ppa:longsleep/golang-backports
|
2019-08-30 10:40:20 +08:00
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
sudo apt-get update
|
2019-08-30 10:40:20 +08:00
|
|
|
|
|
|
|
sudo apt-get install openresty-debug
|
2019-09-12 10:28:02 +08:00
|
|
|
sudo luarocks install --lua-dir=${OPENRESTY_PREFIX}/luajit luacov-coveralls
|
2019-08-23 07:30:39 +08:00
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
export GO111MOUDULE=on
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
export_or_prefix
|
|
|
|
|
2019-10-22 13:29:20 +08:00
|
|
|
if [ ! -f "build-cache/apisix-master-0.rockspec" ]; then
|
2019-09-22 06:48:05 +08:00
|
|
|
create_lua_deps
|
2019-09-23 09:20:56 +08:00
|
|
|
|
2019-09-22 06:48:05 +08:00
|
|
|
else
|
2019-10-22 13:29:20 +08:00
|
|
|
src=`md5sum rockspec/apisix-master-0.rockspec | awk '{print $1}'`
|
|
|
|
src_cp=`md5sum build-cache/apisix-master-0.rockspec | awk '{print $1}'`
|
2019-09-23 09:20:56 +08:00
|
|
|
if [ "$src" = "$src_cp" ]; then
|
2019-09-22 06:48:05 +08:00
|
|
|
echo "Use lua deps cache"
|
|
|
|
sudo cp -r build-cache/deps ./
|
|
|
|
else
|
|
|
|
create_lua_deps
|
|
|
|
fi
|
|
|
|
fi
|
2019-07-10 11:32:16 +08:00
|
|
|
|
2019-08-23 07:30:39 +08:00
|
|
|
git clone https://github.com/iresty/test-nginx.git test-nginx
|
2019-09-23 05:54:37 +08:00
|
|
|
wget -P utils https://raw.githubusercontent.com/iresty/openresty-devel-utils/iresty/lj-releng
|
|
|
|
chmod a+x utils/lj-releng
|
2019-08-21 23:10:34 +08:00
|
|
|
|
2019-10-31 09:27:28 +08:00
|
|
|
git clone https://github.com/apache/openwhisk-utilities.git .travis/openwhisk-utilities
|
|
|
|
cp .travis/ASF* .travis/openwhisk-utilities/scancode/
|
|
|
|
|
2019-08-30 10:40:20 +08:00
|
|
|
ls -l ./
|
|
|
|
if [ ! -f "build-cache/grpc_server_example" ]; then
|
2019-09-03 14:20:53 +08:00
|
|
|
sudo apt-get install golang
|
|
|
|
|
2019-08-30 10:40:20 +08:00
|
|
|
git clone https://github.com/iresty/grpc_server_example.git grpc_server_example
|
|
|
|
|
|
|
|
cd grpc_server_example/
|
|
|
|
go build -o grpc_server_example main.go
|
|
|
|
mv grpc_server_example ../build-cache/
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
script() {
|
|
|
|
export_or_prefix
|
|
|
|
export PATH=$OPENRESTY_PREFIX/nginx/sbin:$OPENRESTY_PREFIX/luajit/bin:$OPENRESTY_PREFIX/bin:$PATH
|
2019-09-12 10:28:02 +08:00
|
|
|
openresty -V
|
2019-07-10 11:32:16 +08:00
|
|
|
sudo service etcd start
|
2019-08-21 23:10:34 +08:00
|
|
|
|
2019-08-30 10:40:20 +08:00
|
|
|
./build-cache/grpc_server_example &
|
2019-08-21 23:10:34 +08:00
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
./bin/apisix help
|
|
|
|
./bin/apisix init
|
|
|
|
./bin/apisix init_etcd
|
|
|
|
./bin/apisix start
|
|
|
|
mkdir -p logs
|
|
|
|
sleep 1
|
|
|
|
./bin/apisix stop
|
|
|
|
sleep 1
|
|
|
|
make check || exit 1
|
|
|
|
APISIX_ENABLE_LUACOV=1 prove -Itest-nginx/lib -r t
|
|
|
|
}
|
|
|
|
|
|
|
|
after_success() {
|
2019-09-09 17:42:20 +08:00
|
|
|
cat luacov.stats.out
|
2019-07-10 11:32:16 +08:00
|
|
|
luacov-coveralls
|
|
|
|
}
|
|
|
|
|
|
|
|
case_opt=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
case ${case_opt} in
|
|
|
|
before_install)
|
|
|
|
before_install "$@"
|
|
|
|
;;
|
|
|
|
do_install)
|
|
|
|
do_install "$@"
|
|
|
|
;;
|
|
|
|
script)
|
|
|
|
script "$@"
|
|
|
|
;;
|
|
|
|
after_success)
|
|
|
|
after_success "$@"
|
|
|
|
;;
|
|
|
|
esac
|