devops: document fix for firefox build from launchctl

This commit is contained in:
Andrey Lushnikov 2019-12-12 15:59:17 -08:00
Родитель af94e7a8c9
Коммит ea1decbeee
4 изменённых файлов: 11 добавлений и 5 удалений

Просмотреть файл

@ -144,6 +144,9 @@ Make sure to change the following fields:
<key>AZ_ACCOUNT_KEY</key>
<string></string>
<key>MOZ_NOSPAM</key>
<string>1</string>
</dict>
@ -160,3 +163,6 @@ Make sure to change the following fields:
```
Next, you can either use `launchctl load` command to load the daemon, or reboot bot to make sure it auto-starts.
> **NOTE**: mozbuild uses [terminal-notifier](https://github.com/julienXX/terminal-notifier) which hangs
> in launchctl environment. The `MOZ_NOSPAM` env variable disables terminal notifications.

Просмотреть файл

@ -55,7 +55,7 @@ if [[ -n $(git status -s) ]]; then
fi
git pull origin master
../checkout_build_archive_upload.sh firefox >/tmp/$(basename $0)-firefox-log.log
../checkout_build_archive_upload.sh firefox >/tmp/$(basename $0)-firefox-log.log || true
git pull origin master
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log || true

Просмотреть файл

@ -61,7 +61,7 @@ if [[ -n $(git status -s) ]]; then
fi
git pull origin master
../checkout_build_archive_upload.sh firefox >/tmp/$(basename $0)-firefox-log.log
../checkout_build_archive_upload.sh firefox >/tmp/$(basename $0)-firefox-log.log || true
git pull origin master
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log || true

Просмотреть файл

@ -62,4 +62,4 @@ if [[ -n $(git status -s) ]]; then
fi
git pull origin master
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log
../checkout_build_archive_upload.sh webkit >/tmp/$(basename $0)-webkit-log.log || true