Skip to content

Commit 322713e

Browse files
authored
Re-enable Mill filesystem checker in generate-mostly-static-launcher (#162)
1 parent 5648b6c commit 322713e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ jobs:
181181
- uses: actions/setup-node@v6
182182
with:
183183
node-version: 24
184-
- run: | # TODO get rid of --no-filesystem-checker
184+
- run: |
185185
./mill -i native-mostly-static.writeNativeImageScript --scriptDest generate.sh --imageDest "" && \
186186
./generate.sh && \
187-
./mill -i --no-filesystem-checker tests.test.nativeStatic && \
187+
./mill -i tests.test.nativeStatic && \
188188
./mill -i native-mostly-static.copyToArtifacts --directory artifacts/
189189
- uses: actions/upload-artifact@v5
190190
with:

build.mill.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ trait Cli extends ScalaJsCliModule with ScalaJsCliPublishModule {
111111
}
112112

113113
trait ScalaJsCliNativeImage extends ScalaJsCliModule with NativeImage {
114+
override def generateNativeImageWithFileSystemChecker: Boolean = false
114115

115116
def nativeImageClassPath: T[Seq[PathRef]] = Task {
116117
runClasspath()

0 commit comments

Comments
 (0)