Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove support for alpine 3.15(EOL) #186

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/verify-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
fail-fast: false
matrix:
version: [ 8, 11, 17, 21 ]
os_version: ["3.15", "3.16", "3.17", "3.18"]
os_version: ["3.16", "3.17", "3.18"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
20 changes: 0 additions & 20 deletions .tags
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ Tags: 8-al2-native-jdk, 8u382-al2-native-jdk
Architectures: amd64, arm64v8
Directory: 8/jdk/al2

Tags: 8-alpine3.15, 8u382-alpine3.15, 8-alpine3.15-full, 8-alpine3.15-jdk
Architectures: amd64, arm64v8
Directory: 8/jdk/alpine/3.15

Tags: 8-alpine3.15-jre, 8u382-alpine3.15-jre
Architectures: amd64, arm64v8
Directory: 8/jre/alpine/3.15

Tags: 8-alpine3.16, 8u382-alpine3.16, 8-alpine3.16-full, 8-alpine3.16-jdk
Architectures: amd64, arm64v8
Directory: 8/jdk/alpine/3.16
Expand Down Expand Up @@ -74,10 +66,6 @@ Tags: 11-al2-native-jdk, 11.0.20-al2-native-jdk
Architectures: amd64, arm64v8
Directory: 11/jdk/al2

Tags: 11-alpine3.15, 11.0.20-alpine3.15, 11-alpine3.15-full, 11-alpine3.15-jdk
Architectures: amd64, arm64v8
Directory: 11/jdk/alpine/3.15

Tags: 11-alpine3.16, 11.0.20-alpine3.16, 11-alpine3.16-full, 11-alpine3.16-jdk
Architectures: amd64, arm64v8
Directory: 11/jdk/alpine/3.16
Expand Down Expand Up @@ -118,10 +106,6 @@ Tags: 17-al2-native-jdk, 17.0.8-al2-native-jdk
Architectures: amd64, arm64v8
Directory: 17/jdk/al2

Tags: 17-alpine3.15, 17.0.8-alpine3.15, 17-alpine3.15-full, 17-alpine3.15-jdk
Architectures: amd64, arm64v8
Directory: 17/jdk/alpine/3.15

Tags: 17-alpine3.16, 17.0.8-alpine3.16, 17-alpine3.16-full, 17-alpine3.16-jdk
Architectures: amd64, arm64v8
Directory: 17/jdk/alpine/3.16
Expand All @@ -142,10 +126,6 @@ Tags: 20-al2023-generic, 20.0.2-al2023-generic, 20-al2023-generic-jdk
Architectures: amd64, arm64v8
Directory: 20/jdk/al2023-generic

Tags: 20-alpine3.15, 20.0.2-alpine3.15, 20-alpine3.15-full, 20-alpine3.15-jdk
Architectures: amd64, arm64v8
Directory: 20/jdk/alpine/3.15

Tags: 20-alpine3.16, 20.0.2-alpine3.16, 20-alpine3.16-full, 20-alpine3.16-jdk
Architectures: amd64, arm64v8
Directory: 20/jdk/alpine/3.16
Expand Down
22 changes: 0 additions & 22 deletions 11/jdk/alpine/3.15/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 17/jdk/alpine/3.15/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 21/jdk/alpine/3.15/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 8/jdk/alpine/3.15/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions 8/jre/alpine/3.15/Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion bin/apply-template.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def process_template_files(major_version, version, platform):
input_parameter['MAJOR_VERSION'] = major_version
if platform == 'alpine':
# Update .github/workflows/verify-images.yml as well when alpine versions changes
os_versions = ['3.15', '3.16', '3.17', '3.18']
os_versions = ['3.16', '3.17', '3.18']
try:
shutil.rmtree(f"{major_version}/jdk/{platform}")
shutil.rmtree(f"{major_version}/jre/{platform}")
Expand Down
2 changes: 1 addition & 1 deletion bin/tag-generator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

DEFAULT_ALPINE_VERSION = '3.18'
ALPINE_VERSIONS = ['3.15', '3.16', '3.17', '3.18']
ALPINE_VERSIONS = ['3.16', '3.17', '3.18']

LTS_VERSIONS = [ "8", "11", "17", "21"]
AL2023_GENERIC_VERSIONS = ["20"]
Expand Down
Loading