Skip to content

Commit d0ddd3a

Browse files
committed
[GR-39276] Broken links check with absolutize.rb.
PullRequest: graal/12281
2 parents 166a7fd + 9145a15 commit d0ddd3a

File tree

5 files changed

+29
-8
lines changed

5 files changed

+29
-8
lines changed

docs/getting-started/graalvm-enterprise/get-started-graalvm-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can get Oracle GraalVM Enterprise Edition by:
2525
Choose your operating system and proceed to the installation steps for your specific platform:
2626

2727
* Oracle Cloud
28-
* [OCI Compute with Oracle Linux 7/8](oci/installation-compute-instance-yum.md)
28+
* [OCI Compute with Oracle Linux 7/8](oci/installation-compute-instance-with-OL.md)
2929
* [OCI DevOps Build Pipelines](oci/installation-devops-build-pipeline.md)
3030
* [Linux](installation-linux.md)
3131
* [Linux ARM64](installation-linux-aarch64.md)

docs/getting-started/graalvm-enterprise/oci/installation-devops-build-pipeline.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ The way to work with a build pipeline is to add statements to a [build specifica
2727
To install and use GraalVM Enterprise in the DevOps build pipeline, update your build specification file as follows:
2828

2929
1. Add the command to install GraalVM Enterprise with Native Image and Java Development Kit (JDK):
30+
3031
```yml
3132
steps:
3233
- type: Command
@@ -60,9 +61,31 @@ To install and use GraalVM Enterprise in the DevOps build pipeline, update your
6061

6162
Here is an example of a complete [build specification file](https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-build-examples/oci_devops_build_with_graalenterprise/build_spec.yaml).
6263

64+
Use the `yum list` command to get a list of all the GraalVM Enterprise RPMs available. For instance, use the following command to list all the available GraalVM Enterprise 22.x JDK17 components:
65+
66+
```shell
67+
yum list graalvm22-ee-17*
68+
69+
graalvm22-ee-17-native-image.x86_64 22.2.0-1.el7 ol7_oci_included
70+
graalvm22-ee-17-espresso.x86_64 22.2.0-1.el7 ol7_oci_included
71+
graalvm22-ee-17-javascript.x86_64 22.2.0-1.el7 ol7_oci_included
72+
graalvm22-ee-17-jdk.x86_64 22.2.0-1.el7 ol7_oci_included
73+
graalvm22-ee-17-libpolyglot.x86_64 22.2.0-1.el7 ol7_oci_included
74+
graalvm22-ee-17-llvm.x86_64 22.2.0-1.el7 ol7_oci_included
75+
graalvm22-ee-17-llvm-toolchain.x86_64 22.2.0-1.el7 ol7_oci_included
76+
graalvm22-ee-17-nodejs.x86_64 22.2.0-1.el7 ol7_oci_included
77+
graalvm22-ee-17-polyglot.x86_64 22.2.0-1.el7 ol7_oci_included
78+
graalvm22-ee-17-python.x86_64 22.2.0-1.el7 ol7_oci_included
79+
graalvm22-ee-17-ruby.x86_64 22.2.0-1.el7 ol7_oci_included
80+
graalvm22-ee-17-tools.x86_64 22.2.0-1.el7 ol7_oci_included
81+
graalvm22-ee-17-wasm.x86_64 22.2.0-1.el7 ol7_oci_included
82+
...
83+
```
84+
6385
To try this feature out, use the sample project: [Using GraalVM Enterprise in OCI DevOps Build Pipelines](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci_devops_build_with_graalenterprise). It describes how to set up GraalVM Enterprise in OCI DevOps service, create a build pipeline, add build stages, and so on.
6486

6587
### Related Documentation
6688

6789
* [OCI DevOps: Using GraalVM Enterprise in DevOps Build Pipelines](https://docs.oracle.com/en-us/iaas/Content/devops/using/graalvm.htm)
68-
* [OCI Build Examples: Using GraalVM Enterprise in OCI DevOps Build Pipelines](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci_devops_build_with_graalenterprise)
90+
* [OCI Build Examples: Using GraalVM Enterprise in OCI DevOps Build Pipelines](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci_devops_build_with_graalenterprise)
91+
* [OCI Build Examples: Using GraalVM Enterprise in OCI DevOps to build a Micronaut REST App](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci_devops_graalee_micronaut)

docs/reference-manual/native-image/guides/containerise-native-executable-with-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ For that, we will use `ghcr.io/graalvm/jdk:ol8-java17` which is a size compact G
7979
The difference will be more visible if you build a Docker image of the same Spring Boot application containing a JAR file instead of a native executable, and compare images startup times and file sizes.
8080

8181
On Linux, you can shrink your container size even more.
82-
With GraalVM Native Image you have the ability to build a statically linked native executable by packaging the native executable directly into an empty Docker image, also known as a scratch container. Continue to [Build a Static or Mostly-Static Native Executable guide](build-static-executable.md) to learn more.
82+
With GraalVM Native Image you have the ability to build a statically linked native executable by packaging the native executable directly into an empty Docker image, also known as a scratch container. Continue to [Build a Static or Mostly-Static Native Executable guide](build-static-and-mostly-static-executable.md) to learn more.
8383

8484
### Related Documentation
8585

8686
* [GraalVM Native Image, Spring and Containerisation](https://luna.oracle.com/lab/fdfd090d-e52c-4481-a8de-dccecdca7d68)
8787
* [GraalVM Community Images](../../../getting-started/graalvm-community/container-images/graalvm-ce-container-images.md)
88-
* [Build a Static or Mostly-Static Native Executable](build-static-executable.md)
88+
* [Build a Static or Mostly-Static Native Executable](build-static-and-mostly-static-executable.md)

docs/reference-manual/native-image/guides/use-reachability-metadata-repository-gradle.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ For the Java application used in this guide the first two approaches are applica
2323
This guide demonstrates how to build a native executable with the [Tracing agent](#build-a-native-executable-with-the-agent) and using the [GraalVM Reachability Metadata Repository](https://github.com/oracle/graalvm-reachability-metadata).
2424
The goal is to show users the difference, and prove how using shared metadata can simplify the work.
2525

26-
<!-- [Describe what the demo application is about] -->
27-
2826
We recommend that you follow the instructions and create the application step-by-step. Alternatively, you can go right to the [completed example](https://github.com/graalvm/native-build-tools/tree/master/samples/metadata-repo-integration).
2927

3028
> You must have [GraalVM installed with Native Image support](../README.md#install-native-image).

docs/tools/vscode/graalvm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Your application will:
250250
* Achieve peak performance with no warmup time
251251
* Have improved security by reducing attack surfaces and thwarting reverse engineering
252252

253-
Find more information in [Building Native Executables](#building-native-executables) below.
253+
Find more information in [Building Native Executables](#debugging-native-executables) below.
254254

255255
### Configuration with Tracing Agent
256256

@@ -406,4 +406,4 @@ The GraalVM Extension for VS Code recommends the following extensions:
406406
407407
### Privacy Policy
408408
409-
Read the [Oracle Privacy Policy](https://www.oracle.com/legal/privacy/privacy-policy.html) to learn more.
409+
Read the [Oracle Privacy Policy](https://www.oracle.com/legal/privacy/privacy-policy.html) to learn more.

0 commit comments

Comments
 (0)