From f5b584f966bf0f3e7f9a3d6189ec269bbf2c5903 Mon Sep 17 00:00:00 2001 From: davidot Date: Sat, 8 Jan 2022 14:19:09 +0100 Subject: [PATCH] CI: Fix the name of the per-files in the test262 comparison runs Also remove the always passing copy since the website has the files now. --- .github/workflows/libjs-test262.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index fa3ffc84f8..9f029acf74 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -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 @@ -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