mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-18 16:25:16 +01:00
54b6884853
The original python packaged: in git action host is V2, it should be upgraded to V3. Signed-off-by: danfengliu <danfengl@vmware.com>
54 lines
1.5 KiB
Bash
Executable File
54 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
set +e
|
|
sudo rm -fr /data/*
|
|
sudo mkdir -p /data
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
set -e
|
|
if [ -z "$1" ]; then echo no ip specified; exit 1;fi
|
|
# prepare cert ...
|
|
sudo ./tests/generateCerts.sh $1
|
|
|
|
python --version
|
|
pip -V
|
|
cat /etc/issue
|
|
cat /proc/version
|
|
sudo apt-get update -y && sudo apt-get install -y zbar-tools libzbar-dev python-zbar python3.7
|
|
sudo rm /usr/bin/python && sudo ln -s /usr/bin/python3.7 /usr/bin/python
|
|
sudo apt-get install -y python3-pip
|
|
pip -V
|
|
sudo -H pip install --ignore-installed urllib3 chardet requests --upgrade
|
|
python --version
|
|
|
|
sudo ./tests/hostcfg.sh
|
|
|
|
if [ "$2" = 'LDAP' ]; then
|
|
cd tests && sudo ./ldapprepare.sh && cd ..
|
|
fi
|
|
|
|
if [ $GITHUB_TOKEN ];
|
|
then
|
|
sed "s/# github_token: xxx/github_token: $GITHUB_TOKEN/" -i make/harbor.yml
|
|
fi
|
|
|
|
sed "s|# metric:|metric:|" -i make/harbor.yml
|
|
sed "s|# enabled: false| enabled: true|" -i make/harbor.yml
|
|
sed "s|# port: 9090| port: 9090|" -i make/harbor.yml
|
|
sed "s|# path: /metrics| path: /metrics|" -i make/harbor.yml
|
|
|
|
sudo make build_base_docker compile build prepare COMPILETAG=compile_golangimage GOBUILDTAGS="include_oss include_gcs" BUILDBIN=true NOTARYFLAG=true TRIVYFLAG=true CHARTFLAG=true GEN_TLS=true
|
|
|
|
# set the debugging env
|
|
echo "GC_TIME_WINDOW_HOURS=0" | sudo tee -a ./make/common/config/core/env
|
|
sudo make start
|
|
|
|
# waiting 5 minutes to start
|
|
for((i=1;i<=30;i++)); do
|
|
echo $i waiting 10 seconds...
|
|
sleep 10
|
|
curl -k -L -f 127.0.0.1/api/v2.0/systeminfo && break
|
|
docker ps
|
|
done
|