File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2121 - name : Set up environment variables
2222 run : |
2323 echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
24- echo "SCALA_VERSION=3.3.6 " >> $GITHUB_ENV
24+ echo "SCALA_VERSION=3.3.7 " >> $GITHUB_ENV
2525 - name : JAR Build
2626 run : ./mill "sjsonnet.jvm[$SCALA_VERSION].__.assembly"
2727 - name : JS Build
6767 - name : Set up environment variables
6868 run : |
6969 echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
70- echo "SCALA_VERSION=3.3.6 " >> $GITHUB_ENV
70+ echo "SCALA_VERSION=3.3.7 " >> $GITHUB_ENV
7171 - name : Native Binary Build
7272 run : ./mill "sjsonnet.native[$SCALA_VERSION].nativeLink"
7373 - name : GraalVM Binary Build
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cancelable in Global := true
44val options = Seq (" -Wconf:origin=scala.collection.compat.*:s" , " -Xlint:all" )
55
66lazy val commonSettings = Seq (
7- scalaVersion := " 3.3.6 " ,
7+ scalaVersion := " 3.3.7 " ,
88 scalacOptions ++= options
99)
1010
Original file line number Diff line number Diff line change @@ -248,13 +248,13 @@ mitigate the unfortunate JVM warmup overhead that adds ~1s to every invocation
248248down to 0.2-0.3s. For the simple non-client-server executable, you can use
249249
250250```bash
251- ./mill -i show sjsonnet[3.3.6 ].jvm.assembly
251+ ./mill -i show sjsonnet[3.3.7 ].jvm.assembly
252252```
253253
254254To create the executable. For the client-server executable, you can use
255255
256256```bash
257- ./mill -i show sjsonnet[3.3.6 ].server.assembly
257+ ./mill -i show sjsonnet[3.3.7 ].server.assembly
258258```
259259
260260By default, the Sjsonnet background server lives in `~/.sjsonnet`, and lasts 5
Original file line number Diff line number Diff line change 1818
1919JAVA_OPTS=" -Xss100m -Xms2g -XX:+UseG1GC"
2020ROOTDIR=$( git rev-parse --show-toplevel)
21- JSONNET_BIN=" $ROOTDIR /out/sjsonnet/jvm/3.3.6 /assembly.dest/out.jar"
21+ JSONNET_BIN=" $ROOTDIR /out/sjsonnet/jvm/3.3.7 /assembly.dest/out.jar"
2222PARAMS=" --no-duplicate-keys-in-comprehension --strict-import-syntax --strict-inherited-assertions --strict-set-operations"
2323
2424if [ $# -eq 0 ] ; then
Original file line number Diff line number Diff line change 1717set -e
1818
1919JAVA_OPTS=" -Xss100m"
20- JSONNET_BIN=" ../../../../out/sjsonnet/jvm/3.3.6 /assembly.dest/out.jar"
20+ JSONNET_BIN=" ../../../../out/sjsonnet/jvm/3.3.7 /assembly.dest/out.jar"
2121PARAMS=" --no-duplicate-keys-in-comprehension --strict-import-syntax --strict-inherited-assertions --strict-set-operations"
2222
2323if [ $# -eq 0 ] ; then
You can’t perform that action at this time.
0 commit comments