Skip to content
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