File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3
3
"isRoot" : true ,
4
4
"tools" : {
5
5
"run-script" : {
6
- "version" : " 0.1.0-beta.139 " ,
6
+ "version" : " 0.1.0-beta.152 " ,
7
7
"commands" : [
8
8
" r"
9
9
]
Original file line number Diff line number Diff line change 54
54
55
55
- run : dotnet r build
56
56
57
- - run : dotnet r test
57
+ - run : dotnet r test -- --logger "trx;LogFilePrefix=${{ matrix.os }}"
58
58
59
59
- run : dotnet r pack -- --version-suffix ${{ env.VERSION_SUFFIX }}
60
60
@@ -140,9 +140,15 @@ jobs:
140
140
141
141
- run : |
142
142
if [ "${{ matrix.shell }}" == "default" ]; then
143
- dotnet r test --verbose -- --logger "trx;LogFilePrefix=${{ matrix.os }}-integration-tests "
143
+ dotnet r test --verbose -- --logger "trx;LogFilePrefix=${{ matrix.os }}-default "
144
144
else
145
- dotnet r test --verbose --script-shell "${{ matrix.shell }}" -- --logger "trx;LogFilePrefix=${{ matrix.os }}-integration-tests"
145
+ shellName="${{ matrix.shell }}"
146
+
147
+ if [[ "$shellName" == *\.exe ]]; then
148
+ shellName="bash"
149
+ fi
150
+
151
+ dotnet r test --verbose --script-shell "${{ matrix.shell }}" -- --logger "trx;LogFilePrefix=${{ matrix.os }}-$shellName"
146
152
fi
147
153
shell: bash
148
154
You can’t perform that action at this time.
0 commit comments