Bug 1607474 - Upload puppeteer results on taskcluster, r=remote-protocol-reviewers,maja_zf

Depends on D65700

Differential Revision: https://phabricator.services.mozilla.com/D65701

--HG--
extra : moz-landing-system : lando
This commit is contained in:
James Graham 2020-03-10 14:08:42 +00:00
Родитель 609861f3ed
Коммит 9407d058e3
1 изменённых файлов: 12 добавлений и 2 удалений

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

@ -20,6 +20,16 @@ job-defaults:
worker:
docker-image: {in-tree: desktop1604-test}
max-run-time: 1800
artifacts:
- type: file
name: public/remote/results.json
path: /builds/worker/results.json
- type: file
name: public/remote/pup_errorsummary.json
path: /builds/worker/pup_errorsummary.json
- type: file
name: public/remote/pup_raw.log
path: /builds/worker/pup_raw.log
puppeteer:
description: Puppeteer tests against Firefox CDP-based remote protocol
@ -30,7 +40,7 @@ puppeteer:
using: run-task
command: >
cd $GECKO_PATH/ &&
./mach puppeteer-test --setpref "remote.log.level=Trace" --binary $MOZ_FETCHES_DIR/firefox/firefox --headless
./mach puppeteer-test -vv --binary $MOZ_FETCHES_DIR/firefox/firefox --headless --write-results /builds/worker/results.json --log-tbpl - --log-errorsummary /builds/worker/pup_errorsummary.json --log-raw /builds/worker/pup_raw.log
puppeteer-fis:
description: Puppeteer tests against Firefox CDP-based remote protocol with Fission (site isolation) turned on
@ -41,4 +51,4 @@ puppeteer-fis:
using: run-task
command: >
cd $GECKO_PATH/ &&
./mach puppeteer-test --setpref "remote.log.level=Trace" --binary $MOZ_FETCHES_DIR/firefox/firefox --headless --enable-fission
./mach puppeteer-test -vv --binary $MOZ_FETCHES_DIR/firefox/firefox --headless --enable-fission --write-results /builds/worker/results.json --log-tbpl - --log-errorsummary /builds/worker/pup_errorsummary.json --log-raw /builds/worker/pup_raw.log