devops: upload logs for test runs (#1015)

This commit is contained in:
Andrey Lushnikov 2020-02-14 19:02:17 -08:00 committed by GitHub
parent 3656403f2d
commit 9caa61aed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,16 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install libgbm-dev xvfb sudo apt-get install libgbm-dev xvfb
- run: npm install - run: npm install
- run: xvfb-run --auto-servernum npm run ccoverage # XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
# Wrap `npm run` in a subshell to redirect STDERR to file.
- run: xvfb-run --auto-servernum -- bash -c "npm run ccoverage 2>./chromium-linux-testrun.log"
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: chromium-linux-testrun.log
path: chromium-linux-testrun.log
chromium_mac: chromium_mac:
name: "Chromium Mac" name: "Chromium Mac"
@ -36,7 +45,14 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run ctest - run: npm run ctest 2>./chromium-mac-testrun.log
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: chromium-mac-testrun.log
path: chromium-mac-testrun.log
chromium_win: chromium_win:
name: "Chromium Win" name: "Chromium Win"
@ -47,7 +63,15 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run ctest - run: npm run ctest 2>./chromium-win-testrun.log
shell: bash
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: chromium-win-testrun.log
path: chromium-win-testrun.log
webkit_linux: webkit_linux:
name: "WebKit Linux" name: "WebKit Linux"
@ -63,7 +87,16 @@ jobs:
sudo apt-get install libwoff1 libopus0 libwebp6 libwebpdemux2 libenchant1c2a libgudev-1.0-0 libsecret-1-0 libhyphen0 libgdk-pixbuf2.0-0 libegl1 libgles2 libevent-2.1-6 libnotify4 libxslt1.1 sudo apt-get install libwoff1 libopus0 libwebp6 libwebpdemux2 libenchant1c2a libgudev-1.0-0 libsecret-1-0 libhyphen0 libgdk-pixbuf2.0-0 libegl1 libgles2 libevent-2.1-6 libnotify4 libxslt1.1
sudo apt-get install xvfb sudo apt-get install xvfb
- run: npm install - run: npm install
- run: xvfb-run --auto-servernum npm run wcoverage # XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
# Wrap `npm run` in a subshell to redirect STDERR to file.
- run: xvfb-run --auto-servernum -- bash -c "npm run wcoverage 2>./webkit-linux-testrun.log"
env:
DEBUG: "*,-pw:wrapped*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: webkit-linux-testrun.log
path: webkit-linux-testrun.log
webkit_mac: webkit_mac:
name: "WebKit Mac" name: "WebKit Mac"
@ -74,7 +107,14 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run wtest - run: npm run wtest 2>./webkit-mac-testrun.log
env:
DEBUG: "*,-pw:wrapped*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: webkit-mac-testrun.log
path: webkit-mac-testrun.log
webkit_win: webkit_win:
name: "WebKit Win" name: "WebKit Win"
@ -85,9 +125,15 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run wtest -- --verbose - run: npm run wtest -- --verbose 2>./webkit-win-testrun.log
shell: bash
env: env:
DEBUG: "*launch*" DEBUG: "*,-pw:wrapped*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: webkit-win-testrun.log
path: webkit-win-testrun.log
firefox_linux: firefox_linux:
name: "Firefox Linux" name: "Firefox Linux"
@ -102,7 +148,16 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install xvfb sudo apt-get install xvfb
- run: npm install - run: npm install
- run: xvfb-run --auto-servernum npm run fcoverage # XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
# Wrap `npm run` in a subshell to redirect STDERR to file.
- run: xvfb-run --auto-servernum -- bash -c "npm run fcoverage 2>./firefox-linux-testrun.log"
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: firefox-linux-testrun.log
path: firefox-linux-testrun.log
firefox_mac: firefox_mac:
name: "Firefox Mac" name: "Firefox Mac"
@ -113,7 +168,14 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run ftest - run: npm run ftest 2>./firefox-mac-testrun.log
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: firefox-mac-testrun.log
path: firefox-mac-testrun.log
firefox_win: firefox_win:
name: "Firefox Win" name: "Firefox Win"
@ -124,4 +186,12 @@ jobs:
with: with:
node-version: 10.15 node-version: 10.15
- run: npm install - run: npm install
- run: npm run ftest - run: npm run ftest 2>./firefox-win-testrun.log
shell: bash
env:
DEBUG: "*"
- uses: actions/upload-artifact@v1
if: failure()
with:
name: firefox-win-testrun.log
path: firefox-win-testrun.log