mirror of
https://github.com/goharbor/harbor
synced 2025-05-07 19:38:31 +00:00
Add elif to if condition to make if condition as one sentence, so return code is accurate for each sentence. (#6291)
Remove a space. Signed-off-by: danfengliu <danfengl@vmware.com>
This commit is contained in:
parent
bbee74eba4
commit
9a46d6b3ac
@ -29,15 +29,13 @@ docker ps
|
||||
# run db auth api cases
|
||||
if [ "$1" = 'DB' ]; then
|
||||
pybot -v ip:$2 -v HARBOR_PASSWORD:Harbor12345 /home/travis/gopath/src/github.com/goharbor/harbor/tests/robot-cases/Group0-BAT/API_DB.robot
|
||||
fi
|
||||
# run ldap api cases
|
||||
if [ "$1" = 'LDAP' ]; then
|
||||
elif [ "$1" = 'LDAP' ]; then
|
||||
# run ldap api cases
|
||||
pybot -v ip:$2 -v HARBOR_PASSWORD:Harbor12345 /home/travis/gopath/src/github.com/goharbor/harbor/tests/robot-cases/Group0-BAT/API_LDAP.robot
|
||||
else
|
||||
rc=999
|
||||
fi
|
||||
|
||||
rc=$?
|
||||
echo $rc
|
||||
|
||||
## --------------------------------------------- Upload Harbor CI Logs -------------------------------------------
|
||||
timestamp=$(date +%s)
|
||||
outfile="integration_logs_$timestamp$TRAVIS_COMMIT.tar.gz"
|
||||
|
Loading…
x
Reference in New Issue
Block a user