Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Introduce 0.12.x CI pipeline
Browse files Browse the repository at this point in the history
Uses GraalVM 22.1 branch.

Closes gh-1578
  • Loading branch information
sdeleuze committed Apr 13, 2022
1 parent 4171305 commit 8fcf082
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.adoc
@@ -1,6 +1,6 @@
:documentation-url: https://docs.spring.io/spring-native/docs/current/reference/htmlsingle

image:https://ci.spring.io/api/v1/teams/spring-native/pipelines/spring-native-0.11.x/jobs/build-samples-java11/badge["Build Status", link="https://ci.spring.io/teams/spring-native/pipelines/spring-native-0.11.x?group=builds"] image:https://img.shields.io/badge/documentation-blue.svg["Reference documentation", link="{documentation-url}"]
image:https://ci.spring.io/api/v1/teams/spring-native/pipelines/spring-native-0.12.x/jobs/build-samples-java11/badge["Build Status", link="https://ci.spring.io/teams/spring-native/pipelines/spring-native-0.12.x?group=builds"] image:https://img.shields.io/badge/documentation-blue.svg["Reference documentation", link="{documentation-url}"]

Spring Native provides beta support for compiling Spring applications to native executables using https://www.graalvm.org[GraalVM]
https://www.graalvm.org/reference-manual/native-image/[native-image] compiler, in order to provide a native deployment
Expand Down
2 changes: 1 addition & 1 deletion ci/README.adoc
Expand Up @@ -11,7 +11,7 @@ The pipeline can be deployed using the following command:

[source]
----
$ fly -t spring-native set-pipeline -p spring-native-0.11.x -c ci/pipeline.yml -l ci/parameters.yml
$ fly -t spring-native set-pipeline -p spring-native-0.12.x -c ci/pipeline.yml -l ci/parameters.yml
----

NOTE: This assumes that you have configured the appropriate secrets.
2 changes: 1 addition & 1 deletion ci/images/README.adoc
Expand Up @@ -33,7 +33,7 @@ To build the Spring Native image used namely by the samples, you need to provide
with the target GraalVM installation, using the `BASE_IMAGE` argument:

----
$ docker build --no-cache --build-arg BASE_IMAGE=springci/graalvm-ce:dev-java11-0.11.x -f spring-native-image/Dockerfile .
$ docker build --no-cache --build-arg BASE_IMAGE=springci/graalvm-ce:dev-java11-0.12.x -f spring-native-image/Dockerfile .
----

=== Testing
Expand Down
4 changes: 2 additions & 2 deletions ci/parameters.yml
Expand Up @@ -3,7 +3,7 @@ github-repo-name: "spring-projects-experimental/spring-native"
docker-hub-organization: "springci"
artifactory-server: "https://repo.spring.io"
branch: "main"
milestone: "0.11.x"
milestone: "0.12.x"
build-name: "spring-native"
concourse-url: "https://ci.spring.io"
task-timeout: 30m
Expand All @@ -15,6 +15,6 @@ jdk-url-java11: "https://github.com/adoptium/temurin11-binaries/releases/downloa
jdk-url-java17: "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_x64_linux_hotspot_17_35.tar.gz"

graalvm-repo: "https://github.com/oracle/graal.git"
graalvm-branch: "release/graal-vm/22.0"
graalvm-branch: "release/graal-vm/22.1"
labsjdk-identifier-java11: "labsjdk-ce-11"
labsjdk-identifier-java17: "labsjdk-ce-17"
2 changes: 1 addition & 1 deletion run-dev-container.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

MILESTONE=0.11.x
MILESTONE=0.12.x
JAVA_VERSION=11
GRAALVM_VERSION=stable
PULL=false
Expand Down

0 comments on commit 8fcf082

Please sign in to comment.