Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary Marchini <mmarchini@netflix.com>2020-08-01 07:40:47 +0300
committerMary Marchini <mmarchini@netflix.com>2020-08-07 06:07:49 +0300
commit46bef7b7716b377055260490bb6f713ffb593672 (patch)
tree92b1a0f2ecd618699d3482bbebb136cfeb8e1830 /.github
parenta11aa9b9806380b22308af2f0b327946b2b7f557 (diff)
test: add Actions annotation output
It's possible to annotate failures in Actions by printing "::error file={},line={},col={}::{message}". This methos is preferrable over using a problem matcher because problem matchers only allow single-line messages, whereas ::error allows multi-line messages. PR-URL: https://github.com/nodejs/node/pull/34590 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-asan.yml2
-rw-r--r--.github/workflows/test-linux.yml4
-rw-r--r--.github/workflows/test-macos.yml2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml
index 96975024e39..224d18463ac 100644
--- a/.github/workflows/test-asan.yml
+++ b/.github/workflows/test-asan.yml
@@ -36,4 +36,4 @@ jobs:
- name: Build
run: make build-ci -j2 V=1
- name: Test
- run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"
+ run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml
index fcf11259e8e..a5eb2351c3e 100644
--- a/.github/workflows/test-linux.yml
+++ b/.github/workflows/test-linux.yml
@@ -27,7 +27,7 @@ jobs:
- name: Build
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test
- run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"
+ run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
test-linux-with-quic:
runs-on: ubuntu-latest
@@ -42,4 +42,4 @@ jobs:
- name: Build
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
- name: Test
- run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"
+ run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml
index a4ef46e7ff4..ba3bb5426da 100644
--- a/.github/workflows/test-macos.yml
+++ b/.github/workflows/test-macos.yml
@@ -27,4 +27,4 @@ jobs:
- name: Build
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
- name: Test
- run: make run-ci -j8 V=1 TEST_CI_ARGS="-p dots"
+ run: make run-ci -j8 V=1 TEST_CI_ARGS="-p actions"