Skip to content

Commit dfd8a50

Browse files
Merge pull request #5 from alexarchambault/updates
Updates
2 parents 67416e8 + 3d673a4 commit dfd8a50

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/launchers.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
scalaJsVersion: ["1.9.0", "1.10.0"]
16+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"]
1717
steps:
1818
- uses: actions/checkout@v2
1919
with:
2020
fetch-depth: 0
2121
submodules: true
2222
- uses: coursier/[email protected]
23-
- uses: coursier/setup-action@v1
23+
- uses: coursier/setup-action@v1.2.0-M3
2424
with:
25-
jvm: 8
25+
jvm: temurin:17
2626
- run: |
2727
./mill -i "native[$scalaJsVersion].writeNativeImageScript" generate.sh "" && \
2828
./generate.sh && \
@@ -54,16 +54,16 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
scalaJsVersion: ["1.9.0", "1.10.0"]
57+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"]
5858
steps:
5959
- uses: actions/checkout@v2
6060
with:
6161
fetch-depth: 0
6262
submodules: true
6363
- uses: coursier/[email protected]
64-
- uses: coursier/setup-action@v1
64+
- uses: coursier/setup-action@v1.2.0-M3
6565
with:
66-
jvm: 8
66+
jvm: temurin:17
6767
- run: |
6868
./mill -i "native-static[$scalaJsVersion].writeNativeImageScript" generate.sh "" && \
6969
./generate.sh && \
@@ -86,16 +86,16 @@ jobs:
8686
strategy:
8787
fail-fast: false
8888
matrix:
89-
scalaJsVersion: ["1.9.0", "1.10.0"]
89+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"]
9090
steps:
9191
- uses: actions/checkout@v2
9292
with:
9393
fetch-depth: 0
9494
submodules: true
9595
- uses: coursier/[email protected]
96-
- uses: coursier/setup-action@v1
96+
- uses: coursier/setup-action@v1.2.0-M3
9797
with:
98-
jvm: 8
98+
jvm: temurin:17
9999
- run: |
100100
./mill -i "native-mostly-static[$scalaJsVersion].writeNativeImageScript" generate.sh "" && \
101101
./generate.sh && \

build.sc

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import mill._
99
import mill.scalalib._
1010
import coursier.core.Version
1111

12-
def scalaJsCliVersion = "1.1.1-sc4.1"
13-
def scalaJsVersions = Seq("1.9.0", "1.10.0")
12+
def scalaJsCliVersion = "1.1.1-sc5"
13+
def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1")
1414

1515
class ScalaJsCliNativeImage(val scalaJsVersion0: String) extends ScalaModule with NativeImage {
1616
def scalaVersion = "2.13.8"
@@ -35,7 +35,7 @@ class ScalaJsCliNativeImage(val scalaJsVersion0: String) extends ScalaModule wit
3535
)
3636
}
3737
def nativeImagePersist = System.getenv("CI") != null
38-
def graalVmVersion = "22.0.0"
38+
def graalVmVersion = "22.1.0"
3939
def nativeImageGraalVmJvmId = s"graalvm-java17:$graalVmVersion"
4040
def nativeImageName = "scala-js-ld"
4141
def ivyDeps = super.ivyDeps() ++ Seq(

0 commit comments

Comments
 (0)