Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow #15

Merged
merged 16 commits into from
Mar 31, 2024
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: .\Bin\Debug-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Debug
path: ${{env.RUNNER_TEMP}}/testoutput.xml
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run: .\Bin\Release-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Release
path: ${{env.RUNNER_TEMP}}/testoutput.xml
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
run: .\Bin\Dist-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Dist
path: ${{env.RUNNER_TEMP}}/testoutput.xml
6 changes: 3 additions & 3 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ jobs:
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Debug
name: ThisIsTheName
name: Test Report Debug
path: '*.xml'
reporter: jest-junit

- name: "Create test report (Release)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Release
name: ThisIsTheName
name: Test Report Release
path: '*.xml'
reporter: jest-junit

- name: "Create test report (Dist)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Dist
name: ThisIsTheName
name: Test Report Dist
path: '*.xml'
reporter: jest-junit
Loading