File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 17
17
export LLVM_BIN=$(dirname $(readlink -f /usr/bin/clang))
18
18
echo "LLVM_BIN=${LLVM_BIN}" >> $GITHUB_ENV
19
19
20
+ - name : Set env Windows
21
+ if : ${{ startsWith(matrix.OS, 'windows') }}
22
+ shell : pwsh
23
+ run : |
24
+ Choco-Install -PackageName llvm -ArgumentList "--version=16.0.6", "--allow-downgrade", "--force"
25
+ echo "${env:ProgramFiles}\LLVM\bin" | Out-File -FilePath ${env:GITHUB_PATH} -Encoding utf8 -Append
26
+ echo "LLVM_BIN=${env:ProgramFiles}\LLVM\bin" >> ${env:GITHUB_OUTPUT}
27
+
20
28
- name : Test
21
29
run : >
22
30
sbt 'set cli/scalaVersion := "${{matrix.scala}}"'
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ val cliAssemblyJarName = settingKey[String]("Name of created assembly jar")
55
55
inThisBuild(
56
56
Def .settings(
57
57
organization := " org.scala-native" ,
58
- scalaNativeVersion := " 0.4.14 " ,
58
+ scalaNativeVersion := " 0.4.15 " ,
59
59
version := scalaNativeVersion.value,
60
60
scalaVersion := crossScalaVersions212.last,
61
61
crossScalaVersions := publishScalaVersions,
You can’t perform that action at this time.
0 commit comments