File tree Expand file tree Collapse file tree 6 files changed +6
-10
lines changed Expand file tree Collapse file tree 6 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ them back to GitHub as Check Runs.
18
18
steps :
19
19
- command : npm test
20
20
plugins :
21
- - check-run-reporter/check-run-reporter#v2.10.3 :
21
+ - check-run-reporter/check-run-reporter#v2.11.0 :
22
22
report : ' reports/junit/**/*.xml'
23
23
token : ' <your repo token>'
24
24
` ` `
@@ -37,7 +37,7 @@ should run on this host.
37
37
steps:
38
38
- command: npm test -- $$CHECK_RUN_REPORTER_TESTS_FOR_THIS_AGENT
39
39
plugins:
40
- - check-run-reporter/check-run-reporter#v2.10.3 :
40
+ - check-run-reporter/check-run-reporter#v2.11.0 :
41
41
tests: 'src/**/*.spec.ts,!src/storyshots.spec.ts'
42
42
report: 'reports/junit/**/*.xml'
43
43
token: '<your repo token>'
Original file line number Diff line number Diff line change @@ -43,12 +43,11 @@ log () {
43
43
echo " $@ " 1>&2
44
44
}
45
45
46
- HOSTNAME=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_HOSTNAME:- api.check-run-reporter.com }
46
+ HOSTNAME=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_HOSTNAME:- ' ' }
47
47
LABEL=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_LABEL:- $BUILDKITE_LABEL }
48
48
ROOT=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_ROOT:- $(find_root)}
49
49
SHA=$BUILDKITE_COMMIT
50
50
TOKEN=$BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TOKEN
51
- URL=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_URL:- https:// api.check-run-reporter.com/ api/ v1/ submissions}
52
51
REPORT_DIR=$BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_REPORT
53
52
54
53
log ' Running check-run-reporter-buildkite-plugin with the following parameters'
@@ -71,7 +70,6 @@ $BIN submit \
71
70
--report=" $REPORT_DIR " \
72
71
--root=" $ROOT " \
73
72
--sha=" $SHA " \
74
- --token=" $TOKEN " \
75
- --url=" $URL "
73
+ --token=" $TOKEN "
76
74
77
75
echo " Uploaded reports to Check Run Reporter"
Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ log () {
10
10
echo " $@ " 1>&2
11
11
}
12
12
13
- HOSTNAME=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_HOSTNAME:- api.check-run-reporter.com }
13
+ HOSTNAME=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_HOSTNAME:- ' ' }
14
14
LABEL=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_LABEL:- $BUILDKITE_LABEL }
15
15
TOKEN=$BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TOKEN
16
16
TESTS=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TESTS:- ' ' }
17
- URL=${BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_URL:- https:// api.check-run-reporter.com/ api/ v1/ split}
18
17
19
18
if [ -z " $TESTS " ]; then
20
19
exit 0
@@ -45,7 +44,6 @@ CHECK_RUN_REPORTER_TESTS_FOR_THIS_AGENT=$($BIN split \
45
44
--nodeCount=" $NODE_COUNT " \
46
45
--nodeIndex=" $NODE_INDEX " \
47
46
--tests=" $TESTS " \
48
- --token=" $TOKEN " \
49
- --url=" $URL " )
47
+ --token=" $TOKEN " )
50
48
51
49
echo " Got distributed tests for this node from Check Run Reporter"
You can’t perform that action at this time.
0 commit comments