From 4cd5673cc7cb42ac7dda72fa012202a017295eca Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 3 May 2021 16:52:54 -0700 Subject: [PATCH] chore: add debugging information on bots to trace unzipping (#6395) We occasionally stuble upon unzipping error: "end of central directory record signature not found" that's coming from the underlying unzip library. This tracing should help us investigate what's going on here. --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 04a7bd98b3437..262a77cbeffca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,6 +58,8 @@ jobs: with: node-version: 12 - run: npm ci + env: + DEBUG=extract-zip - run: npm run build - run: node lib/cli/cli install-deps ${{ matrix.browser }} chromium - run: npm run test -- --tag=${{ matrix.browser }} @@ -85,6 +87,8 @@ jobs: with: node-version: 12 - run: npm ci + env: + DEBUG=extract-zip - run: npm run build - run: node lib/cli/cli install-deps - run: npm run test -- --tag=${{ matrix.browser }} @@ -113,6 +117,8 @@ jobs: with: node-version: ${{ matrix.node_version }} - run: npm ci + env: + DEBUG=extract-zip - run: npm run build - run: node lib/cli/cli install-deps - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- bash packages/installation-tests/installation-tests.sh