Skip to content

Commit

Permalink
CI: Fix the name of the per-files in the test262 comparison runs
Browse files Browse the repository at this point in the history
Also remove the always passing copy since the website has the files now.
  • Loading branch information
davidot authored and linusg committed Jan 8, 2022
1 parent 28358d8 commit f5b584f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/libjs-test262.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ jobs:
- name: Get previous results
working-directory: libjs-test262
run: |
cp -f ../libjs-website/test262/data/per-file-master.json . || :
cp -f ../libjs-website/test262/data/per-file-bytecode-master.json . || :
cp -f ../libjs-website/test262/data/per-file-master.json .
cp -f ../libjs-website/test262/data/per-file-bytecode-master.json .
- name: Run test262 and test262-parser-tests
working-directory: libjs-test262
Expand All @@ -127,9 +127,9 @@ jobs:
- name: Compare non-bytecode
continue-on-error: true
working-directory: libjs-test262
run: ./per_file_result_diff.py -o master.json -n ../libjs-website/test262/data/per-file-master.json
run: ./per_file_result_diff.py -o per-file-master.json -n ../libjs-website/test262/data/per-file-master.json

- name: Compare bytecode
continue-on-error: true
working-directory: libjs-test262
run: ./per_file_result_diff.py -o bytecode-master.json -n ../libjs-website/test262/data/per-file-bytecode-master.json
run: ./per_file_result_diff.py -o per-file-bytecode-master.json -n ../libjs-website/test262/data/per-file-bytecode-master.json

0 comments on commit f5b584f

Please sign in to comment.