Skip to content

Commit

Permalink
Revert "devops: teach buildbots to run sanity check script (#2064)" (#…
Browse files Browse the repository at this point in the history
…2075)

This reverts commit 4c2c485.
We'd rather add a mac 10.14 test bot.
  • Loading branch information
aslushnikov authored May 1, 2020
1 parent a9f0c40 commit de32d39
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 105 deletions.
13 changes: 3 additions & 10 deletions browser_patches/checkout_build_archive_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,19 +164,14 @@ function generate_and_upload_browser_build {
return 22
fi

echo "-- running sanity test"
if ! ./$BROWSER_NAME/run_sanity_check.sh; then
return 23
fi

echo "-- archiving to $ZIP_PATH"
if ! ./$BROWSER_NAME/archive.sh $ZIP_PATH "$EXTRA_ARCHIVE_ARGS"; then
return 24
return 23
fi

echo "-- uploading"
if ! ./upload.sh $BUILD_BLOB_PATH $ZIP_PATH; then
return 25
return 24
fi
return 0
}
Expand Down Expand Up @@ -211,10 +206,8 @@ else
elif (( RESULT_CODE == 22 )); then
FAILED_STEP="./build.sh"
elif (( RESULT_CODE == 23 )); then
FAILED_STEP="./run_sanity_check.sh"
elif (( RESULT_CODE == 24 )); then
FAILED_STEP="./archive.sh"
elif (( RESULT_CODE == 25 )); then
elif (( RESULT_CODE == 24 )); then
FAILED_STEP="./upload.sh"
else
FAILED_STEP="<unknown step>"
Expand Down
17 changes: 0 additions & 17 deletions browser_patches/firefox/run_sanity_check.sh

This file was deleted.

28 changes: 0 additions & 28 deletions browser_patches/firefox/sanity.js

This file was deleted.

17 changes: 0 additions & 17 deletions browser_patches/webkit/run_sanity_check.sh

This file was deleted.

33 changes: 0 additions & 33 deletions browser_patches/webkit/sanity.js

This file was deleted.

0 comments on commit de32d39

Please sign in to comment.