Skip to content

Commit

Permalink
Release CLI v0.6.1 [release]
Browse files Browse the repository at this point in the history
* Use glibc when generating the static linked binary

* Set version 0.6.1
  • Loading branch information
jordeu authored May 4, 2022
1 parent c653c5b commit a1f6f9c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
version: '22.0.0.2'
java-version: '11'
components: 'native-image'
native-image-musl: 'true'
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ graalvmNative {
mainClass = 'io.seqera.tower.cli.Tower'
configurationFileDirectories.from(file('conf'))

buildArgs(org.gradle.nativeplatform.platform.internal.DefaultNativePlatform.currentOperatingSystem.isLinux() ? ['--static', '--libc=musl'] : [])
buildArgs(org.gradle.nativeplatform.platform.internal.DefaultNativePlatform.currentOperatingSystem.isLinux() ? ['--static'] : [])
buildArgs.add('--allow-incomplete-classpath')
buildArgs.add('--report-unsupported-elements-at-runtime')
buildArgs.add('-H:+AddAllCharsets')
Expand Down

0 comments on commit a1f6f9c

Please sign in to comment.