Skip to content

Commit 21581a4

Browse files
committed
devops: fix buildbot names
1 parent cb77d33 commit 21581a4

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

browser_patches/buildbots/buildbot-ubuntu-18.04.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ mkdir -p $LOCKDIR
4949
trap "rm -rf ${LOCKDIR}; cd $(pwd -P); exit" INT TERM EXIT
5050
cd "$(dirname "$0")"
5151

52-
IS_FIRST_RUN_FILE="/tmp/pw-buildbot-first-run.txt";
53-
if ! [[ -f $IS_FIRST_RUN_FILE ]]; then
54-
source ./send_telegram_message.sh
55-
send_telegram_message '**Linux Buildbot Is Active**'
56-
fi
57-
touch "$IS_FIRST_RUN_FILE"
58-
5952
# Check if git repo is dirty.
6053
if [[ -n $(git status -s) ]]; then
6154
echo "ERROR: dirty GIT state - commit everything and re-run the script."
6255
exit 1
6356
fi
6457

58+
IS_FIRST_RUN_FILE="/tmp/pw-buildbot-first-run.txt";
59+
if ! [[ -f $IS_FIRST_RUN_FILE ]]; then
60+
source ./send_telegram_message.sh
61+
send_telegram_message '**Ubuntu 18.04 Buildbot Is Active**'
62+
fi
63+
touch "$IS_FIRST_RUN_FILE"
64+
6565
git pull origin master
6666
../checkout_build_archive_upload.sh firefox-ubuntu-18.04 >/tmp/$(basename $0)--firefox.log || true
6767

browser_patches/buildbots/buildbot-ubuntu-20.04.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ mkdir -p $LOCKDIR
4949
trap "rm -rf ${LOCKDIR}; cd $(pwd -P); exit" INT TERM EXIT
5050
cd "$(dirname "$0")"
5151

52-
IS_FIRST_RUN_FILE="/tmp/pw-buildbot-first-run.txt";
53-
if ! [[ -f $IS_FIRST_RUN_FILE ]]; then
54-
source ./send_telegram_message.sh
55-
send_telegram_message '**Linux Buildbot Is Active**'
56-
fi
57-
touch "$IS_FIRST_RUN_FILE"
58-
5952
# Check if git repo is dirty.
6053
if [[ -n $(git status -s) ]]; then
6154
echo "ERROR: dirty GIT state - commit everything and re-run the script."
6255
exit 1
6356
fi
6457

58+
IS_FIRST_RUN_FILE="/tmp/pw-buildbot-first-run.txt";
59+
if ! [[ -f $IS_FIRST_RUN_FILE ]]; then
60+
source ./send_telegram_message.sh
61+
send_telegram_message '**Ubuntu 20.04 Buildbot Is Active**'
62+
fi
63+
touch "$IS_FIRST_RUN_FILE"
64+
6565
git pull origin master
6666
../checkout_build_archive_upload.sh webkit-gtk-ubuntu-20.04 >/tmp/$(basename $0)--webkit-gtk.log || true
6767
../checkout_build_archive_upload.sh webkit-wpe-ubuntu-20.04 >/tmp/$(basename $0)--webkit-wpe.log || true

0 commit comments

Comments
 (0)