-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Only added java 11, as Quarkus does not need java 8 anymore * Create container images using that version to the native-image, tooling and s2i native images * Remove support for GraalVM 20.1.0 to the tooling image.
- Loading branch information
1 parent
11512ec
commit 1e9aaee
Showing
5 changed files
with
49 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
SOURCES_DIR=/tmp/artifacts | ||
|
||
ls -l ${SOURCES_DIR} | ||
tar xzf ${SOURCES_DIR}/${FILENAME} -C /opt | ||
mv /opt/graalvm-ce-${GRAALVM_VERSION} /opt/graalvm | ||
|
||
echo "Installing native-image" | ||
/opt/graalvm/bin/gu --auto-yes install native-image |
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,29 @@ | ||
schema_version: 1 | ||
name: graalvm | ||
version: &version "20.3.0-java11" | ||
|
||
labels: | ||
- name: graalvm-archive-filename | ||
value: &filename graalvm-ce-linux-amd64-20.3.0-java11.tar.gz | ||
- name: graalvm-archive-url | ||
value: &url https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.3.0/graalvm-ce-java11-linux-amd64-20.3.0.tar.gz | ||
- name: graalvm-version | ||
value: &suffix java11-20.3.0 | ||
|
||
envs: | ||
- name: "JAVA_HOME" | ||
value: "/opt/graalvm" | ||
- name: "GRAALVM_HOME" | ||
value: "/opt/graalvm" | ||
- name: "GRAALVM_VERSION" | ||
value: *suffix | ||
- name: "FILENAME" | ||
value: *filename | ||
|
||
artifacts: | ||
- name: *filename | ||
url: *url | ||
md5: 7bdd85e00c1e80530d711c8a2e61a153 | ||
|
||
execute: | ||
- script: configure |