You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AIO.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@
9
9
- Build and Deploy a Golang application using OCI Devops - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-devops-golan-sample
10
10
- Build and Deploy a RUST application using OCI Devops - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-devops-cicd-rust-sample
11
11
- Build and deploy a JAVA - Graal EE - Micronaut application on to Instances - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances
12
-
- Build and run a OCI devops pipeline with JAVA and Graal VM framework. - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-java-graalvm-devops-example
13
-
- Build and run a OCI devops pipeline with Java-Micronaut framework. - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-java-micronaut-devops-example
12
+
- Build and run a OCI devops pipeline with JAVA and GraalVM - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-java-graalvm-devops-example
13
+
- Build and run a OCI devops pipeline with Java-Micronaut framework - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-java-micronaut-devops-example
14
14
- Cascade delete of OCI Project - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-config-examples/oci-project-cascadedelete
15
15
- Cascaded Pipelines - With in the Region - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-pipeline-examples/oci-cascaded-pipelines/same-region
16
16
- Container image scan before deploy - https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci_imagescan_before_deploy
Copy file name to clipboardExpand all lines: oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
-
# Using GraalVM Enterprise in OCI DevOps to build and Deploy a Micronaut REST App on to OCI Instances
1
+
# Using Oracle GraalVM in OCI DevOps to build and Deploy a Micronaut REST App on to OCI Instances
2
2
3
-
This sample shows how to use `Oracle GraalVM Enterprise Edition` in `OCI DevOps build pipelines` to build a simple Micronaut hello world REST application. The application will be then deployed to OCI Instances.
3
+
This sample shows how to use `Oracle GraalVM` in `OCI DevOps build pipelines` to build a simple Micronaut hello world REST application. The application will be then deployed to OCI Instances.
4
4
5
5
## What is GraalVM?
6
6
7
-
-Oracle GraalVM Enterprise is a high-performance JDK distribution that can accelerate any Java workload running on the HotSpot JVM.
7
+
- GraalVM is a highperformance JDK distribution that can accelerate any Java workload running on the HotSpot JVM.
8
8
9
-
-Oracle GraalVM Enterprise Native Image ahead-of-time compilation enables you to build lightweight Java applications that are smaller, faster, and use less memory and CPU. At build time, GraalVM Native Image analyzes a Java application and its dependencies to identify just what classes, methods, and fields are necessary and generates optimized machine code for just those elements.
9
+
- GraalVM Native Image ahead-of-time compilation enables you to build lightweight Java applications that are smaller, faster, and use less memory and CPU. At build time, GraalVM Native Image analyzes a Java application and its dependencies to identify just what classes, methods, and fields are necessary and generates optimized machine code for just those elements.
10
10
11
-
- Oracle GraalVM Enterprise Edition is available for use on Oracle Cloud Infrastructure (OCI) at no additional cost.
11
+
- Oracle GraalVM is available for use on Oracle Cloud Infrastructure (OCI) at no additional cost.
12
12
13
13
## What is Micronaut
14
14
@@ -32,7 +32,7 @@ This sample shows how to use `Oracle GraalVM Enterprise Edition` in `OCI DevOps
32
32
## Objectives
33
33
34
34
- Create an OCI Build / Deploy pipeline.
35
-
- Build and deploy a Graal VM Enterprise - Micronaut application on an OCI VM.
35
+
- Build and deploy an Oracle GraalVM - Micronaut application on an OCI VM.
36
36
37
37
38
38
## Procedure to use this illustration.
@@ -446,9 +446,9 @@ Clean all these resources via OCI Console .
446
446
References
447
447
==========
448
448
449
-
- Using GraalVM Enterprise in DevOps Build Pipelines - https://docs.oracle.com/en-us/iaas/Content/devops/using/graalvm.htm
449
+
- Using Oracle GraalVM in DevOps Build Pipelines - https://docs.oracle.com/en-us/iaas/Content/devops/using/graalvm.htm
Copy file name to clipboardExpand all lines: oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/src/main/java/com/example/HelloController.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ public class HelloController {
10
10
@Get
11
11
@Produces(MediaType.TEXT_PLAIN)
12
12
publicStringindex() {
13
-
return"With Love from OCI Devops - Powered by Graal Enterprise!";
13
+
return"With Love from OCI Devops - Powered by Oracle GraalVM!";
Copy file name to clipboardExpand all lines: oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/src/test/java/com/example/HelloControllerTest.java
0 commit comments