From 9407d058e3cce0ae27ec3023e3b390f21ca102b3 Mon Sep 17 00:00:00 2001 From: James Graham Date: Tue, 10 Mar 2020 14:08:42 +0000 Subject: [PATCH] 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 --- taskcluster/ci/source-test/remote.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/taskcluster/ci/source-test/remote.yml b/taskcluster/ci/source-test/remote.yml index 5cef8c3851d0..7f106c60154c 100644 --- a/taskcluster/ci/source-test/remote.yml +++ b/taskcluster/ci/source-test/remote.yml @@ -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