Skip to content

Bump mill to 0.12.11 #179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/generate-native-image-windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export JAVA_HOME="$(pwd -W | sed 's,/,\\,g')\\jvm"
export GRAALVM_HOME="$JAVA_HOME"
export PATH="$(pwd)/bin:$PATH"
echo "PATH=$PATH"
./mill.bat -i "native-cli.base-image.writeNativeImageScript" generate-native-image.bat ""
./mill.bat -i "native-cli.base-image.writeNativeImageScript" --scriptDest generate-native-image.bat --imageDest ""
./generate-native-image.bat
./mill.bat -i "native-cli.base-image.copyToArtifacts" artifacts/
./mill.bat -i "native-cli.base-image.copyToArtifacts" --directory artifacts/
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
jvm: "temurin:17"
- run: |
cs java --update --ttl 0 -version && \
./mill -i "native-cli.base-image.writeNativeImageScript" generate.sh "" && \
./mill -i "native-cli.base-image.writeNativeImageScript" --scriptDest generate.sh --imageDest "" && \
./generate.sh && \
./mill -i "native-cli.base-image.copyToArtifacts" artifacts/
./mill -i "native-cli.base-image.copyToArtifacts" --directory artifacts/
if: runner.os != 'Windows'
- run: |
export USE_NATIVE_IMAGE_JAVA_PLATFORM_MODULE_SYSTEM=false
Expand Down Expand Up @@ -84,9 +84,9 @@ jobs:
jvm: "temurin:17"
- run: |
cs java --update --ttl 0 -version && \
./mill -i "native-cli.static-image.writeNativeImageScript" generate.sh "" && \
./mill -i "native-cli.static-image.writeNativeImageScript" --scriptDest generate.sh --imageDest "" && \
./generate.sh && \
./mill -i "native-cli.static-image.copyToArtifacts" artifacts/
./mill -i "native-cli.static-image.copyToArtifacts" --directory artifacts/
- uses: actions/upload-artifact@v4
with:
name: launchers-static
Expand All @@ -109,9 +109,9 @@ jobs:
jvm: "temurin:17"
- run: |
cs java --update --ttl 0 -version && \
./mill -i "native-cli.mostly-static-image.writeNativeImageScript" generate.sh "" && \
./mill -i "native-cli.mostly-static-image.writeNativeImageScript" --scriptDest generate.sh --imageDest "" && \
./generate.sh && \
./mill -i "native-cli.mostly-static-image.copyToArtifacts" artifacts/
./mill -i "native-cli.mostly-static-image.copyToArtifacts" --directory artifacts/
- uses: actions/upload-artifact@v4
with:
name: launchers-mostly-static
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
with:
name: launchers-mostly-static
path: artifacts/
- run: ./mill -i ci.upload artifacts/
- run: ./mill -i ci.upload --directory artifacts/
env:
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
run: .github/scripts/gpg-setup.sh
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
- run: ./mill -i ci.publishSonatype __.publishArtifacts
- run: ./mill -i ci.publishSonatype --tasks __.publishArtifacts
env:
PGP_PASSWORD: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13
0.12.11
Loading