Skip to content

Commit 478d3af

Browse files
committed
standardize on node for running the tests
1 parent 4a3a827 commit 478d3af

File tree

1 file changed

+2
-28
lines changed

1 file changed

+2
-28
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,12 @@ jobs:
3838
restore-keys: |
3939
${{ runner.os }}-${{ env.cache-name }}-
4040
41-
# - name: Cache JSC
42-
# uses: actions/[email protected]
43-
# env:
44-
# cache-name: cache-jsc
45-
# with:
46-
# path: WebKit
47-
# key: ${{ runner.os }}-jsc
48-
# restore-keys: |
49-
# ${{ runner.os }}-jsc
50-
5141
- name: Build tests
5242
run: clojure -M:runtime.test.build
5343

54-
# - name: Install JSC
55-
# run: ./ci/install_jsc.sh
56-
5744
- name: Run tests
5845
run: |
59-
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Helpers/jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
46+
node builds/out-adv/core-advanced-test.js | tee test-out.txt
6047
grep -qxF '0 failures, 0 errors.' test-out.txt
6148
6249
# Lite Tests
@@ -95,25 +82,12 @@ jobs:
9582
restore-keys: |
9683
${{ runner.os }}-${{ env.cache-name }}-
9784
98-
# - name: Cache JSC
99-
# uses: actions/[email protected]
100-
# env:
101-
# cache-name: cache-jsc
102-
# with:
103-
# path: WebKit
104-
# key: ${{ runner.os }}-jsc
105-
# restore-keys: |
106-
# ${{ runner.os }}-jsc
107-
10885
- name: Build tests
10986
run: clojure -M:lite.test.build
11087

111-
# - name: Install JSC
112-
# run: ./ci/install_jsc.sh
113-
11488
- name: Run tests
11589
run: |
116-
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Helpers/jsc builds/out-lite/lite-test.js | tee test-out.txt
90+
node builds/out-lite/lite-test.js | tee test-out.txt
11791
grep -qxF '0 failures, 0 errors.' test-out.txt
11892
11993
# Runtime Tests

0 commit comments

Comments
 (0)