Skip to content

Commit

Permalink
Updated test Java 11 version to 11.0.19 (#334)
Browse files Browse the repository at this point in the history
The latest Java 11 release.
  • Loading branch information
freemanjp authored Aug 3, 2023
1 parent 60b0312 commit c3564f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,20 @@ once:

To perform an offline install, you need to specify a bit more information (i.e.
`java_major_version`, `java_release_name`, `java_redis_filename` and
`java_redis_sha256sum`). E.g. to perform an offline install of `11.0.18+10`:
`java_redis_sha256sum`). E.g. to perform an offline install of `11.0.19+7`:

```yaml
# Before performing the offline install, download
# `OpenJDK11U-jdk_x64_linux_hotspot_11.0.18_10.tar.gz` to
# `OpenJDK11U-jdk_x64_linux_hotspot_11.0.19_7.tar.gz` to
# `{{ playbook_dir }}/files/` on the local machine.
- hosts: servers
roles:
- role: gantsign.java
java_major_version: '11'
java_version: '11.0.18+10'
java_release_name: 'jdk-11.0.18+10'
java_redis_filename: 'OpenJDK11U-jdk_x64_linux_hotspot_11.0.18_10.tar.gz'
java_redis_sha256sum: '4a29efda1d702b8ff38e554cf932051f40ec70006caed5c4857a8cbc7a0b7db7'
java_version: '11.0.19+7'
java_release_name: 'jdk-11.0.19+7'
java_redis_filename: 'OpenJDK11U-jdk_x64_linux_hotspot_11.0.19_7.tar.gz'
java_redis_sha256sum: '5f19fb28aea3e28fcc402b73ce72f62b602992d48769502effe81c52ca39a581'
```
Role Facts
Expand Down
12 changes: 6 additions & 6 deletions molecule/java-old-lts-offline/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

- name: Download JDK for offline install
ansible.builtin.get_url:
url: "https://api.adoptium.net/v3/binary/version/{{ 'jdk-11.0.18+10' | urlencode }}/linux/x64/jdk/hotspot/normal/adoptium?project=jdk" # noqa 204
dest: '{{ java_local_archive_dir }}/OpenJDK11U-jdk_x64_linux_hotspot_11.0.18_10.tar.gz'
url: "https://api.adoptium.net/v3/binary/version/{{ 'jdk-11.0.19+7' | urlencode }}/linux/x64/jdk/hotspot/normal/adoptium?project=jdk" # noqa 204
dest: '{{ java_local_archive_dir }}/OpenJDK11U-jdk_x64_linux_hotspot_11.0.19_7.tar.gz'
force: false
timeout: '{{ java_download_timeout_seconds }}'
mode: 'u=rw,go=r'
Expand All @@ -30,10 +30,10 @@
- role: ansible-role-java
java_use_local_archive: true
java_major_version: '11'
java_version: '11.0.18+10'
java_release_name: 'jdk-11.0.18+10'
java_redis_filename: 'OpenJDK11U-jdk_x64_linux_hotspot_11.0.18_10.tar.gz'
java_redis_sha256sum: '4a29efda1d702b8ff38e554cf932051f40ec70006caed5c4857a8cbc7a0b7db7'
java_version: '11.0.19+7'
java_release_name: 'jdk-11.0.19+7'
java_redis_filename: 'OpenJDK11U-jdk_x64_linux_hotspot_11.0.19_7.tar.gz'
java_redis_sha256sum: '5f19fb28aea3e28fcc402b73ce72f62b602992d48769502effe81c52ca39a581'

post_tasks:
- name: Verify java facts
Expand Down

0 comments on commit c3564f5

Please sign in to comment.