Skip to content

Fix test262 artifact paths #5233

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/gh-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,24 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: python $env:RUNNER --test262 update
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: Test262-Win_x86-64_Conformance_Tests_ESNext
path: |
build/tests/test262/local/bin/test262.report

Win_x86-64_Conformance_Tests_ESNext_Debug:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: python $env:RUNNER --test262 update --build-debug
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: Win_x86-64_Conformance_Tests_ESNext_Debug
path: |
build/tests/test262/local/bin/test262.report

Win_x86-64_Tests-MINGW:
runs-on: windows-latest
Expand Down Expand Up @@ -148,7 +160,7 @@ jobs:
with:
name: Test262-ESNext-results
path: |
build/tests/test262_tests_esnext/local/bin/test262.report
build/tests/test262/local/bin/test262.report

Conformance_Tests_ESNext_Debug_A:
runs-on: ubuntu-latest
Expand All @@ -163,7 +175,7 @@ jobs:
with:
name: Test262-ESNext-Debug-A-results
path: |
build/tests/test262_tests_esnext-debug/local/bin/test262.report
build/tests/test262-debug/local/bin/test262.report

Conformance_Tests_ESNext_Debug_B:
runs-on: ubuntu-latest
Expand All @@ -178,7 +190,7 @@ jobs:
with:
name: Test262-ESNext-Debug-B-results
path: |
build/tests/test262_tests_esnext-debug/local/bin/test262.report
build/tests/test262-debug/local/bin/test262.report

Unit_Tests:
runs-on: ubuntu-latest
Expand Down
Loading