Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "devops: teach buildbots to run sanity check script (#2064)" #2075

Merged
merged 1 commit into from
May 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.