Skip to content

Commit f7d2d8e

Browse files
committed
[GR-39276] Broken links check with absolutize.rb.
PullRequest: graal/12280
2 parents a960250 + 2c456ad commit f7d2d8e

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

docs/enterprise-overview/architecture-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The following are the certified platforms for GraalVM Enterprise 22.2:
6767

6868
| Operating System | Version | Architecture | Installation Guide |
6969
|------------------------------------ |-------------- |-------------- |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
70-
| Oracle Linux | 7, 8 | x86 64-bit, ARM 64-bit | [Installation Guide for Linux](../getting-started/graalvm-enterprise/oci/compute-instances.md) |
70+
| Oracle Linux | 7, 8 | x86 64-bit, ARM 64-bit | [Installation Guide for Linux](../getting-started/graalvm-enterprise/oci/installation-compute-instance-with-OL.md) |
7171
| Red Hat Enterprise Linux(RHEL) | 7, 8 | x86 64-bit | [Installation Guide for Linux](../getting-started/graalvm-enterprise/installation-linux.md) |
7272
| macOS | 10.14 (Mojave), 10.15 (Catalina), 11 (Big Sur), 12.2 (Monterey) | x86 64-bit | [Installation Guide for macOS](../getting-started/graalvm-enterprise/installation-macos.md) |
7373
| Microsoft Windows | Server 2016, 2019 | x86 64-bit | [Installation Guide for Windows](../getting-started/graalvm-enterprise/installation-windows.md) |

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

Lines changed: 2 additions & 2 deletions
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)
@@ -335,7 +335,7 @@ who are familiar with GraalVM Enterprise but may have little experience using it
335335

336336
### Oracle Cloud Users
337337
Oracle Cloud users considering GraalVM Enterprise for their cloud workloads are
338-
invited to read [GraalVM Enterprise on OCI](oci/compute-instances.md).
338+
invited to read [GraalVM Enterprise on OCI](oci/installation-compute-instance-with-OL.md).
339339
This page focuses on using GraalVM Enterprise with the Oracle Cloud Infrastructure Virtual Machine compute instance.
340340

341341
### Advanced Users

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/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).

0 commit comments

Comments
 (0)