@@ -61,12 +61,24 @@ jobs:
61
61
steps :
62
62
- uses : actions/checkout@v2
63
63
- 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
64
70
65
71
Win_x86-64_Conformance_Tests_ESNext_Debug :
66
72
runs-on : windows-latest
67
73
steps :
68
74
- uses : actions/checkout@v2
69
75
- 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
70
82
71
83
Win_x86-64_Tests-MINGW :
72
84
runs-on : windows-latest
@@ -148,7 +160,7 @@ jobs:
148
160
with :
149
161
name : Test262-ESNext-results
150
162
path : |
151
- build/tests/test262_tests_esnext /local/bin/test262.report
163
+ build/tests/test262 /local/bin/test262.report
152
164
153
165
Conformance_Tests_ESNext_Debug_A :
154
166
runs-on : ubuntu-latest
@@ -163,7 +175,7 @@ jobs:
163
175
with :
164
176
name : Test262-ESNext-Debug-A-results
165
177
path : |
166
- build/tests/test262_tests_esnext -debug/local/bin/test262.report
178
+ build/tests/test262 -debug/local/bin/test262.report
167
179
168
180
Conformance_Tests_ESNext_Debug_B :
169
181
runs-on : ubuntu-latest
@@ -178,7 +190,7 @@ jobs:
178
190
with :
179
191
name : Test262-ESNext-Debug-B-results
180
192
path : |
181
- build/tests/test262_tests_esnext -debug/local/bin/test262.report
193
+ build/tests/test262 -debug/local/bin/test262.report
182
194
183
195
Unit_Tests :
184
196
runs-on : ubuntu-latest
0 commit comments