From 72b4adf0fe5fa3e83b347c6e04e6eb0bf12ded7c Mon Sep 17 00:00:00 2001 From: davidnolen Date: Wed, 8 Jan 2025 08:04:21 -0500 Subject: [PATCH 1/2] try using installed JSC --- .github/workflows/test.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4263ab9f3..b28692017 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,25 +38,25 @@ jobs: restore-keys: | ${{ runner.os }}-${{ env.cache-name }}- - - name: Cache JSC - uses: actions/cache@v2 - env: - cache-name: cache-jsc - with: - path: WebKit - key: ${{ runner.os }}-jsc - restore-keys: | - ${{ runner.os }}-jsc + # - name: Cache JSC + # uses: actions/cache@v2 + # env: + # cache-name: cache-jsc + # with: + # path: WebKit + # key: ${{ runner.os }}-jsc + # restore-keys: | + # ${{ runner.os }}-jsc - name: Build tests run: clojure -M:runtime.test.build - - name: Install JSC - run: ./ci/install_jsc.sh + # - name: Install JSC + # run: ./ci/install_jsc.sh - name: Run tests run: | - WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt + /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Helpers/jsc WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt grep -qxF '0 failures, 0 errors.' test-out.txt # Runtime Tests From 180679c6fbc0107e2916720fe57057f037d6381d Mon Sep 17 00:00:00 2001 From: davidnolen Date: Wed, 8 Jan 2025 08:08:04 -0500 Subject: [PATCH 2/2] typo --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b28692017..24cf44527 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -56,7 +56,7 @@ jobs: - name: Run tests run: | - /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Helpers/jsc WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt + /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Helpers/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt grep -qxF '0 failures, 0 errors.' test-out.txt # Runtime Tests