File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,6 @@ charset = utf-8
8
8
trim_trailing_whitespace = true
9
9
insert_final_newline = true
10
10
11
- [* .md ]
12
- # code blocks in lists get confused with only 2 spaces
13
- indent_size = 4
14
-
15
11
[* .tf ]
16
12
indent_size = 4
17
13
Original file line number Diff line number Diff line change 7
7
- command : npm test
8
8
plugins :
9
9
- check-run-reporter/check-run-reporter#v1.0.0:
10
- file : ' reports/junit/**/*.xml'
11
- token : ' <your repo token>'
10
+ report : ' reports/junit/**/*.xml'
11
+ token : ' <your repo token>'
12
12
` ` `
13
13
14
14
## Configuration
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ CMD="$CMD -F label'=$LABEL'"
14
14
CMD=" $CMD -F root='$ROOT '"
15
15
CMD=" $CMD -F sha='$SHA '"
16
16
17
- for FILE in $BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_FILE ; do
17
+ for FILE in $BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_REPORT ; do
18
18
echo " Preparing to upload '$FILE ' to Check Run Reporter"
19
19
CMD=" $CMD -F 'report=@$( pwd) /$FILE '"
20
20
done
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ load '/usr/local/lib/bats/load.bash'
9
9
10
10
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_LABEL=' BATS: Single Report Upload'
11
11
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TOKEN=42bbb14a-ef66-4e88-8bdb-1507d6e7adc0
12
- export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_FILE =tests/success.xml
12
+ export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_REPORT =tests/success.xml
13
13
14
14
run " $PWD /hooks/post-command"
15
15
@@ -24,7 +24,7 @@ load '/usr/local/lib/bats/load.bash'
24
24
25
25
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_LABEL=' BATS: Multi Report Upload'
26
26
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TOKEN=42bbb14a-ef66-4e88-8bdb-1507d6e7adc0
27
- export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_FILE =tests/** /* .xml
27
+ export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_REPORT =tests/** /* .xml
28
28
29
29
run " $PWD /hooks/post-command"
30
30
@@ -39,7 +39,7 @@ load '/usr/local/lib/bats/load.bash'
39
39
40
40
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_LABEL=' BATS: Single Report Upload'
41
41
export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_TOKEN=' not-a-token'
42
- export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_FILE =tests/success.xml
42
+ export BUILDKITE_PLUGIN_CHECK_RUN_REPORTER_REPORT =tests/success.xml
43
43
44
44
run " $PWD /hooks/post-command"
45
45
You can’t perform that action at this time.
0 commit comments