Skip to content

Commit a49460a

Browse files
committedJun 28, 2020
switch to a script
1 parent ffb8121 commit a49460a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: clojure -A:runtime.test.build
4848

4949
- 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 .. }
50+
run: ./ci/install_jsc.sh
5151

5252
- name: Run tests
5353
run: WebKit/WebKitBuild/Release/bin/jsc builds/out-adv/core-advanced-test.js

‎ci/install_jsc.sh

+2
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.