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() {
|
2019-07-10 22:23:27 +08:00
|
|
|
export OPENRESTY_PREFIX=$(brew --prefix openresty/brew/openresty-debug)
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
before_install() {
|
2020-07-17 15:27:08 +08:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2020-03-15 20:21:48 +08:00
|
|
|
HOMEBREW_NO_AUTO_UPDATE=1 brew install perl cpanminus etcd luarocks openresty/brew/openresty-debug redis@3.2
|
2019-08-21 23:10:34 +08:00
|
|
|
brew upgrade go
|
2019-10-09 17:58:07 +08:00
|
|
|
|
|
|
|
sudo sed -i "" "s/requirepass/#requirepass/g" /usr/local/etc/redis.conf
|
2020-03-15 20:21:48 +08:00
|
|
|
brew services start redis@3.2
|
2019-10-09 17:58:07 +08:00
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
export GO111MOUDULE=on
|
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
|
|
|
export_or_prefix
|
2019-07-10 22:23:27 +08:00
|
|
|
luarocks install --lua-dir=${OPENRESTY_PREFIX}/luajit luacov-coveralls --local --tree=deps
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2020-07-17 15:27:08 +08:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
export_or_prefix
|
|
|
|
|
2019-11-12 16:38:23 +08:00
|
|
|
make deps
|
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-08-21 23:10:34 +08:00
|
|
|
|
2019-09-23 05:54:37 +08:00
|
|
|
wget -P utils https://raw.githubusercontent.com/openresty/openresty-devel-utils/master/lj-releng
|
2020-05-14 23:20:44 +08:00
|
|
|
chmod a+x utils/lj-releng
|
2019-09-23 05:54:37 +08:00
|
|
|
|
2020-03-15 20:21:48 +08:00
|
|
|
wget https://github.com/iresty/grpc_server_example/releases/download/20200314/grpc_server_example-darwin-amd64.tar.gz
|
|
|
|
tar -xvf grpc_server_example-darwin-amd64.tar.gz
|
2019-11-01 10:09:01 +08:00
|
|
|
|
|
|
|
brew install grpcurl
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
script() {
|
2020-07-17 15:27:08 +08:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
export_or_prefix
|
|
|
|
export PATH=$OPENRESTY_PREFIX/nginx/sbin:$OPENRESTY_PREFIX/luajit/bin:$OPENRESTY_PREFIX/bin:$PATH
|
|
|
|
|
2019-09-06 15:20:26 +08:00
|
|
|
etcd --enable-v2=true &
|
2019-08-22 11:18:05 +08:00
|
|
|
sleep 1
|
|
|
|
|
2020-03-15 20:21:48 +08:00
|
|
|
./grpc_server_example &
|
2019-08-21 23:10:34 +08:00
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
make help
|
|
|
|
make init
|
|
|
|
sudo make run
|
|
|
|
mkdir -p logs
|
|
|
|
sleep 1
|
2019-11-01 10:09:01 +08:00
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
sudo make stop
|
|
|
|
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
ln -sf $PWD/deps/lib $PWD/deps/lib64
|
|
|
|
sudo mkdir -p /usr/local/var/log/nginx/
|
|
|
|
sudo touch /usr/local/var/log/nginx/error.log
|
|
|
|
sudo chmod 777 /usr/local/var/log/nginx/error.log
|
2020-03-23 00:03:40 +08:00
|
|
|
APISIX_ENABLE_LUACOV=1 prove -Itest-nginx/lib -I./ -r t/admin/*.t
|
2019-07-10 11:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
after_success() {
|
2020-07-17 15:27:08 +08:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-07-10 11:32:16 +08:00
|
|
|
$PWD/deps/bin/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
|