2020-11-15 19:39:50 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2021-01-20 09:47:09 +08:00
|
|
|
set -euo pipefail
|
|
|
|
|
2021-02-01 10:51:34 +08:00
|
|
|
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
|
|
|
|
sudo apt-get -y update --fix-missing
|
|
|
|
sudo apt-get -y install software-properties-common
|
|
|
|
sudo add-apt-repository -y "deb https://openresty.org/package/ubuntu $(lsb_release -sc) main"
|
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
2021-01-20 09:47:09 +08:00
|
|
|
if [ "$OPENRESTY_VERSION" == "source" ]; then
|
|
|
|
cd ..
|
2021-11-01 08:48:22 +08:00
|
|
|
wget https://raw.githubusercontent.com/api7/apisix-build-tools/v2.5.0/build-apisix-base.sh
|
2021-10-11 09:09:39 +08:00
|
|
|
chmod +x build-apisix-base.sh
|
|
|
|
./build-apisix-base.sh latest
|
2021-01-20 09:47:09 +08:00
|
|
|
|
2021-02-20 20:28:21 +08:00
|
|
|
sudo apt-get install openresty-openssl111-debug-dev
|
2021-01-20 09:47:09 +08:00
|
|
|
exit 0
|
|
|
|
fi
|
2020-11-15 19:39:50 +08:00
|
|
|
|
2020-11-30 10:32:35 +08:00
|
|
|
if [ "$OPENRESTY_VERSION" == "default" ]; then
|
|
|
|
openresty='openresty-debug'
|
|
|
|
else
|
|
|
|
openresty="openresty-debug=$OPENRESTY_VERSION*"
|
|
|
|
fi
|
|
|
|
|
2021-10-13 09:04:39 +08:00
|
|
|
sudo apt-get install "$openresty" lua5.1 liblua5.1-0-dev openresty-openssl111-debug-dev libldap2-dev
|