Skip to content

Commit f98941e

Browse files
committed
Fix test262 artifact paths
JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác [email protected]
1 parent 355ab24 commit f98941e

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/gh-actions.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,24 @@ jobs:
6161
steps:
6262
- uses: actions/checkout@v2
6363
- run: python $env:RUNNER --test262 update
64+
- uses: actions/upload-artifact@v4
65+
if: success() || failure()
66+
with:
67+
name: Test262-Win_x86-64_Conformance_Tests_ESNext
68+
path: |
69+
build/tests/test262/local/bin/test262.report
6470
6571
Win_x86-64_Conformance_Tests_ESNext_Debug:
6672
runs-on: windows-latest
6773
steps:
6874
- uses: actions/checkout@v2
6975
- run: python $env:RUNNER --test262 update --build-debug
76+
- uses: actions/upload-artifact@v4
77+
if: success() || failure()
78+
with:
79+
name: Win_x86-64_Conformance_Tests_ESNext_Debug
80+
path: |
81+
build/tests/test262/local/bin/test262.report
7082
7183
Win_x86-64_Tests-MINGW:
7284
runs-on: windows-latest
@@ -148,7 +160,7 @@ jobs:
148160
with:
149161
name: Test262-ESNext-results
150162
path: |
151-
build/tests/test262_tests_esnext/local/bin/test262.report
163+
build/tests/test262/local/bin/test262.report
152164
153165
Conformance_Tests_ESNext_Debug_A:
154166
runs-on: ubuntu-latest
@@ -163,7 +175,7 @@ jobs:
163175
with:
164176
name: Test262-ESNext-Debug-A-results
165177
path: |
166-
build/tests/test262_tests_esnext-debug/local/bin/test262.report
178+
build/tests/test262-debug/local/bin/test262.report
167179
168180
Conformance_Tests_ESNext_Debug_B:
169181
runs-on: ubuntu-latest
@@ -178,7 +190,7 @@ jobs:
178190
with:
179191
name: Test262-ESNext-Debug-B-results
180192
path: |
181-
build/tests/test262_tests_esnext-debug/local/bin/test262.report
193+
build/tests/test262-debug/local/bin/test262.report
182194
183195
Unit_Tests:
184196
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)