From 6c29fc07fcac132927981b781a0cfe1bbc427712 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sun, 5 Nov 2023 14:53:03 -0500 Subject: [PATCH] CI: Ensure test262 and test262-jit results are stored in the same file This will allow BuggieBot to display both results from the /test262 command on Discord. --- .github/workflows/libjs-test262.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 9c57c35dcb7..2e9387e28c8 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -114,15 +114,8 @@ jobs: --test262 ../test262 \ --test262-parser-tests ../test262-parser-tests \ --results-json ../libjs-data/test262/results.json \ - --per-file-output ../libjs-data/test262/per-file-master.json - - python3 run_all_and_update_results.py \ - --jit \ - --serenity .. \ - --test262 ../test262 \ - --test262-parser-tests ../test262-parser-tests \ - --results-json ../libjs-data/test262/results-jit.json \ - --per-file-output ../libjs-data/test262/per-file-master-jit.json + --per-file-output ../libjs-data/test262/per-file-master.json \ + --per-file-jit-output ../libjs-data/test262/per-file-master-jit.json - name: Run test-wasm working-directory: libjs-test262