We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb8121 commit a49460aCopy full SHA for a49460a
.github/workflows/test.yaml
@@ -47,7 +47,7 @@ jobs:
47
run: clojure -A:runtime.test.build
48
49
- name: Install JSC
50
- run: [[ -d WebKit ]] || { git clone --depth=1 git://git.webkit.org/WebKit.git WebKit; cd WebKit; Tools/Scripts/build-jsc --jsc-only; cd .. }
+ run: ./ci/install_jsc.sh
51
52
- name: Run tests
53
run: WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js
ci/install_jsc.sh
@@ -0,0 +1,2 @@
1
+#!/usr/bin/env bash
2
+[[ -d WebKit ]] || { git clone --depth=1 git://git.webkit.org/WebKit.git WebKit; cd WebKit; Tools/Scripts/build-jsc --jsc-only; cd .. }
0 commit comments