Correctly return exit code

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2021-07-06 15:56:54 +02:00
parent 706beabdc9
commit 8ac7d46e0f
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -15,7 +15,7 @@ scripts/deleteOutdatedComments.sh "master" "IT" $DRONE_PULL_REQUEST $GIT_USERNAM
scripts/wait_for_emulator.sh scripts/wait_for_emulator.sh
./gradlew jacocoTestGplayDebugUnitTestReport ./gradlew jacocoTestGplayDebugUnitTestReport
status=$? status=$(( $status | $? ))
if [ ! $status -eq 0 ]; then if [ ! $status -eq 0 ]; then
bash scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "master" "Unit" $DRONE_PULL_REQUEST $GIT_USERNAME $GIT_TOKEN bash scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "master" "Unit" $DRONE_PULL_REQUEST $GIT_USERNAME $GIT_TOKEN
@ -24,14 +24,14 @@ fi
./gradlew installGplayDebugAndroidTest ./gradlew installGplayDebugAndroidTest
scripts/wait_for_server.sh "server" scripts/wait_for_server.sh "server"
./gradlew createGplayDebugCoverageReport -Pcoverage -Pandroid.testInstrumentationRunnerArguments.notAnnotation=com.owncloud.android.utils.ScreenshotTest ./gradlew createGplayDebugCoverageReport -Pcoverage -Pandroid.testInstrumentationRunnerArguments.notAnnotation=com.owncloud.android.utils.ScreenshotTest
status=$? status=$(( $status | $? ))
if [ ! $status -eq 0 ]; then if [ ! $status -eq 0 ]; then
bash scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "master" "IT" $DRONE_PULL_REQUEST $GIT_USERNAME $GIT_TOKEN bash scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER "master" "IT" $DRONE_PULL_REQUEST $GIT_USERNAME $GIT_TOKEN
fi fi
./gradlew combinedTestReport ./gradlew combinedTestReport
status=$? status=$(( $status | $? ))
curl -o codecov.sh https://codecov.io/bash curl -o codecov.sh https://codecov.io/bash
bash ./codecov.sh -t fc506ba4-33c3-43e4-a760-aada38c24fd5 bash ./codecov.sh -t fc506ba4-33c3-43e4-a760-aada38c24fd5