diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 8216728149..99e9984116 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -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 @@ -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 @@ -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 @@ -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