Skip to content

Commit 6b9019c

Browse files
committed
updated workflow
1 parent 5e212f2 commit 6b9019c

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/open-issues-dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
continue-on-error: true
5353
run: |
5454
cd RegrTesting/Tools/IssueRunner/bin/Release/net10.0
55-
./IssueRunner run --scope OpenOnly --skip-netfx --timeout 900 --nunit-only --root $GITHUB_WORKSPACE
55+
./IssueRunner run --scope OpenOnly --skip-netfx --timeout 900 --nunit-only --root $GITHUB_WORKSPACE | tee $GITHUB_WORKSPACE/RegrTesting/TestResults-consolelog.md
5656
5757
- name: Generate test report
5858
if: always()
@@ -63,15 +63,15 @@ jobs:
6363
- name: Publish summary
6464
if: always()
6565
run: |
66-
cat RegrTesting/TestReport.md >> "$GITHUB_STEP_SUMMARY"
66+
cat TestReport.md >> "$GITHUB_STEP_SUMMARY"
6767
6868
- name: Upload artifacts
6969
if: always()
7070
uses: actions/upload-artifact@v4
7171
with:
7272
name: dotnet-open-results
7373
path: |
74-
RegrTesting/results.json
74+
results.json
7575
RegrTesting/TestResults-consolelog.md
76-
RegrTesting/TestReport.md
76+
TestReport.md
7777
if-no-files-found: error

.github/workflows/open-issues-netfx.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: pwsh
5454
run: |
5555
cd RegrTesting\Tools\IssueRunner\bin\Release\net10.0
56-
.\IssueRunner.exe run --scope OpenOnly --only-netfx --timeout 900 --nunit-only --root $env:GITHUB_WORKSPACE
56+
.\IssueRunner.exe run --scope OpenOnly --only-netfx --timeout 900 --nunit-only --root $env:GITHUB_WORKSPACE | Tee-Object -FilePath $env:GITHUB_WORKSPACE\RegrTesting\TestResults-consolelog.md
5757
5858
- name: Generate test report
5959
if: always()
@@ -66,15 +66,15 @@ jobs:
6666
if: always()
6767
shell: pwsh
6868
run: |
69-
Get-Content RegrTesting\TestReport.md | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
69+
Get-Content TestReport.md | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
7070
7171
- name: Upload artifacts
7272
if: always()
7373
uses: actions/upload-artifact@v4
7474
with:
7575
name: netfx-open-results
7676
path: |
77-
RegrTesting/results.json
77+
results.json
7878
RegrTesting/TestResults-consolelog.md
79-
RegrTesting/TestReport.md
79+
TestReport.md
8080
if-no-files-found: error

.github/workflows/regression-tests-dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ jobs:
6161
- name: Publish summary
6262
if: always()
6363
run: |
64-
cat RegrTesting/TestReport.md >> "$GITHUB_STEP_SUMMARY"
64+
cat TestReport.md >> "$GITHUB_STEP_SUMMARY"
6565
6666
- name: Upload artifacts
6767
if: always()
6868
uses: actions/upload-artifact@v4
6969
with:
7070
name: dotnet-regression-results
7171
path: |
72-
RegrTesting/results.json
73-
RegrTesting/TestReport.md
72+
results.json
73+
TestReport.md
7474
RegrTesting/TestResults-consolelog.md
7575
if-no-files-found: warn
7676

.github/workflows/regression-tests-netfx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ jobs:
6464
if: always()
6565
shell: pwsh
6666
run: |
67-
Get-Content RegrTesting\TestReport.md | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
67+
Get-Content TestReport.md | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
6868
6969
- name: Upload artifacts
7070
if: always()
7171
uses: actions/upload-artifact@v4
7272
with:
7373
name: netfx-regression-results
7474
path: |
75-
RegrTesting/results.json
76-
RegrTesting/TestReport.md
75+
results.json
76+
TestReport.md
7777
RegrTesting/TestResults-consolelog.md
7878
if-no-files-found: warn
7979

0 commit comments

Comments
 (0)