File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 5
5
# Runtime Tests
6
6
runtime-test :
7
7
name : Runtime Tests
8
- runs-on : ubuntu-16.04
8
+ runs-on : macos-10.15
9
9
steps :
10
10
- uses : actions/checkout@v2
11
11
57
57
# Self-host Tests
58
58
self-host-test :
59
59
name : Self-host Tests
60
- runs-on : ubuntu-16.04
60
+ runs-on : macos-10.15
61
61
steps :
62
62
- uses : actions/checkout@v2
63
63
96
96
# Self-parity Tests
97
97
self-parity-test :
98
98
name : Self-parity Tests
99
- runs-on : ubuntu-16.04
99
+ runs-on : macos-10.15
100
100
steps :
101
101
- uses : actions/checkout@v2
102
102
@@ -135,7 +135,7 @@ jobs:
135
135
# Compiler Tests
136
136
compiler-test :
137
137
name : Compiler Tests
138
- runs-on : ubuntu-16.04
138
+ runs-on : macos-10.15
139
139
steps :
140
140
- uses : actions/checkout@v2
141
141
@@ -169,7 +169,7 @@ jobs:
169
169
# CLI Tests
170
170
cli-test :
171
171
name : CLI Tests
172
- runs-on : ubuntu-16.04
172
+ runs-on : macos-10.15
173
173
steps :
174
174
- uses : actions/checkout@v2
175
175
with :
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
if [ ! -d WebKit ]
3
3
then
4
- git clone -b Safari-611.1.5.1 --depth=1 git@ github.com: WebKit/WebKit.git WebKit;
4
+ git clone -b Safari-611.1.5.1 --depth=1 https:// github.com/ WebKit/WebKit.git WebKit;
5
5
cd WebKit;
6
6
Tools/Scripts/build-jsc --jsc-only;
7
7
cd ..
Original file line number Diff line number Diff line change 24
24
:selfparity.test.build {:extra-paths [" src/test/self" ]
25
25
:main-opts [" -i" " src/test/self/self_parity/setup.clj"
26
26
" -e" " (self-parity.setup/-main)"
27
- " -m" " cljs.main" " -co" " resources/self_parity_test.edn" " -c" ]}}}
27
+ " -m" " cljs.main" " -co" " resources/self_parity_test.edn" " -c" ]}
28
+ :uberjar {:extra-deps {com.github.seancorfield/depstar {:mvn/version " 2.0.193" }}
29
+ :exec-fn hf.depstar/uberjar
30
+ :exec-args {:aot true }}}}
Original file line number Diff line number Diff line change @@ -52,8 +52,7 @@ AOT_CACHE_FILE=`mktemp /tmp/core.cljs.cache.aot.edn.XXXXXXXXXXX`
52
52
sed -e " s/0.0.0000/$MAJOR .$MINOR -$REVISION /" src/main/cljs/cljs/core.cljs.cache.aot.edn > $AOT_CACHE_FILE
53
53
mv $AOT_CACHE_FILE src/main/cljs/cljs/core.cljs.cache.aot.edn
54
54
55
- lein uberjar
56
- mv target/clojurescript-0.0-SNAPSHOT-standalone.jar target/cljs.jar
55
+ clojure -X:uberjar :jar target/cljs.jar :compile-ns :all
57
56
58
57
rm -f src/main/cljs/cljs/core.aot.js
59
58
rm -f src/main/cljs/cljs/core.aot.js.map
You can’t perform that action at this time.
0 commit comments