Skip to content

Commit 91b5bb7

Browse files
authored
fix: publish to Build Cop for release jobs (#1635)
1 parent d3fa0d6 commit 91b5bb7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.kokoro/build-with-appengine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ npm install
6565

6666
# If tests are running against master, configure Build Cop
6767
# to open issues on failures:
68-
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"continuous"* ]]; then
68+
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"release"* ]]; then
6969
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
7070
export MOCHA_REPORTER=xunit
7171
cleanup() {

.kokoro/build-with-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ npm install
6161

6262
# If tests are running against master, configure Build Cop
6363
# to open issues on failures:
64-
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"continuous"* ]]; then
64+
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"release"* ]]; then
6565
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
6666
export MOCHA_REPORTER=xunit
6767
cleanup() {

.kokoro/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ gcloud config set project $GCLOUD_PROJECT
8888

8989
# If tests are running against master, configure Build Cop
9090
# to open issues on failures:
91-
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"continuous"* ]]; then
91+
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"release"* ]]; then
9292
export MOCHA_REPORTER_OUTPUT=sponge_log.xml
9393
export MOCHA_REPORTER=xunit
9494
cleanup() {

0 commit comments

Comments
 (0)