-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/sign-build-artifacts
# Conflicts: # .github/workflows/build-mac.yml # .github/workflows/build-win.yml
- Loading branch information
Showing
9 changed files
with
101 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--verbose | ||
--module-path "${JAVA_HOME}/jmods" | ||
--output target/runtime | ||
--add-modules java.base,java.compiler,java.naming,java.xml | ||
--strip-native-commands | ||
--no-header-files | ||
--no-man-pages | ||
--strip-debug | ||
--compress zip-6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Contains three env vars: | ||
# JP_APP_VERSION: The version needed for jpackage. This version _must_ follow the scheme Y.X.X, where Y >= 1 and X >=0 | ||
# APP_VERSION: The actual, semantic version displayed in the cli app | ||
# NATIVE_ACCESS_PACKAGE: The java package containing the fuse bindings for the system | ||
--verbose | ||
--type app-image | ||
--runtime-image target/runtime | ||
--input target/libs | ||
--module-path target/mods | ||
--module org.cryptomator.cli/org.cryptomator.cli.CryptomatorCli | ||
--dest target | ||
--name cryptomator-cli | ||
--vendor "Skymatic GmbH" | ||
--copyright "(C) 2016 - 2024 Skymatic GmbH" | ||
--app-version "${JP_APP_VERSION}" | ||
--java-options "-Dorg.cryptomator.cli.version=${APP_VERSION}" | ||
--java-options "--enable-native-access=${NATIVE_ACCESS_PACKAGE}" | ||
--java-options "-Xss5m" | ||
--java-options "-Xmx256m" | ||
--java-options "-Dfile.encoding=\"utf-8\"" |