mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-26 04:05:40 +01:00
Add a upload build flag in Drone CI
This commit is contained in:
parent
24e74c4495
commit
e9aece863c
@ -57,19 +57,25 @@ if [[ $DRONE_BRANCH == "master" || $DRONE_BRANCH == *"refs/tags"* || $DRONE_BRAN
|
|||||||
echo "Package Harbor build."
|
echo "Package Harbor build."
|
||||||
pybot --removekeywords TAG:secret --include Bundle tests/robot-cases/Group0-Distro-Harbor
|
pybot --removekeywords TAG:secret --include Bundle tests/robot-cases/Group0-Distro-Harbor
|
||||||
echo "Running full CI for $DRONE_BUILD_EVENT on $DRONE_BRANCH"
|
echo "Running full CI for $DRONE_BUILD_EVENT on $DRONE_BRANCH"
|
||||||
pybot -v ip:$container_ip --removekeywords TAG:secret --include BAT tests/robot-cases/Group0-BAT
|
|
||||||
upload_latest_build=true
|
upload_latest_build=true
|
||||||
|
pybot -v ip:$container_ip --removekeywords TAG:secret --include BAT tests/robot-cases/Group0-BAT
|
||||||
elif (echo $buildinfo | grep -q "\[Specific CI="); then
|
elif (echo $buildinfo | grep -q "\[Specific CI="); then
|
||||||
buildtype=$(echo $buildinfo | grep "\[Specific CI=")
|
buildtype=$(echo $buildinfo | grep "\[Specific CI=")
|
||||||
testsuite=$(echo $buildtype | awk -v FS="(=|])" '{print $2}')
|
testsuite=$(echo $buildtype | awk -v FS="(=|])" '{print $2}')
|
||||||
pybot -v ip:$container_ip --removekeywords TAG:secret --suite $testsuite --suite Regression tests/robot-cases
|
pybot -v ip:$container_ip --removekeywords TAG:secret --suite $testsuite --suite Regression tests/robot-cases
|
||||||
elif (echo $buildinfo | grep -q "\[Full CI\]"); then
|
elif (echo $buildinfo | grep -q "\[Full CI\]"); then
|
||||||
upload_build=true
|
|
||||||
pybot -v ip:$container_ip --removekeywords TAG:secret --exclude skip tests/robot-cases
|
pybot -v ip:$container_ip --removekeywords TAG:secret --exclude skip tests/robot-cases
|
||||||
elif (echo $buildinfo | grep -q "\[Skip CI\]"); then
|
elif (echo $buildinfo | grep -q "\[Skip CI\]"); then
|
||||||
echo "Skip CI."
|
echo "Skip CI."
|
||||||
|
elif (echo $buildinfo | grep -q "\[Upload Build\]"); then
|
||||||
|
upload_latest_build=true
|
||||||
|
upload_build=true
|
||||||
|
echo "Package Harbor build."
|
||||||
|
pybot --removekeywords TAG:secret --include Bundle tests/robot-cases/Group0-Distro-Harbor
|
||||||
|
echo "Running full CI for $DRONE_BUILD_EVENT on $DRONE_BRANCH"
|
||||||
|
pybot -v ip:$container_ip --removekeywords TAG:secret --include BAT tests/robot-cases/Group0-BAT
|
||||||
else
|
else
|
||||||
# default mode is BAT.
|
# default mode is BAT.
|
||||||
pybot -v ip:$container_ip --removekeywords TAG:secret --include BAT tests/robot-cases/Group0-BAT
|
pybot -v ip:$container_ip --removekeywords TAG:secret --include BAT tests/robot-cases/Group0-BAT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -90,6 +96,13 @@ else
|
|||||||
echo "No log output file to upload"
|
echo "No log output file to upload"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
## --------------------------------------------- Upload Harbor Build File ---------------------------------------
|
||||||
|
if [ $upload_build == true ] && [ $rc -eq 0 ]; then
|
||||||
|
harbor_build_bundle=$(basename harbor-offline-installer-*.tgz)
|
||||||
|
gsutil cp $harbor_build_bundle gs://harbor-builds
|
||||||
|
gsutil -D setacl public-read gs://harbor-builds/$harbor_build_bundle &> /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
## --------------------------------------------- Upload Harbor Latest Build File ---------------------------------------
|
## --------------------------------------------- Upload Harbor Latest Build File ---------------------------------------
|
||||||
if [ $upload_latest_build == true ] && [ $rc -eq 0 ]; then
|
if [ $upload_latest_build == true ] && [ $rc -eq 0 ]; then
|
||||||
echo "update latest build file."
|
echo "update latest build file."
|
||||||
|
Loading…
Reference in New Issue
Block a user