Skip to content

Commit 5517ef9

Browse files
authored
Merge pull request #739 from NVIDIA/rm-unsupported-distros
[cleanup] remove unsupported distros and versions
2 parents 140023a + 7a164e3 commit 5517ef9

261 files changed

Lines changed: 7 additions & 49579 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.common-ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,6 @@ trigger-pipeline:
135135
variables:
136136
DIST: rocky9
137137

138-
.dist-fedora36:
139-
variables:
140-
DIST: fedora36
141-
142138
# Define the platform targets
143139
.platform-amd64:
144140
variables:

.github/dependabot.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,6 @@ updates:
77
target-branch: main
88
directories:
99
- "**/*"
10-
exclude-paths:
11-
- "azurelinux/**"
12-
- "centos7/**"
13-
- "centos8/**"
14-
- "coreos/**"
15-
- "fedora/**"
16-
- "flatcar/**"
17-
- "photon3.0/**"
18-
- "rhel7/**"
19-
- "sle15/**"
20-
- "ubuntu16.04/**"
21-
- "ubuntu18.04/**"
22-
- "ubuntu20.04/**"
2310
open-pull-requests-limit: 10
2411
schedule:
2512
interval: "weekly"
@@ -29,18 +16,5 @@ updates:
2916

3017
- package-ecosystem: "github-actions"
3118
directory: "/"
32-
exclude-paths:
33-
- "azurelinux/**"
34-
- "centos7/**"
35-
- "centos8/**"
36-
- "coreos/**"
37-
- "fedora/**"
38-
- "flatcar/**"
39-
- "photon3.0/**"
40-
- "rhel7/**"
41-
- "sle15/**"
42-
- "ubuntu16.04/**"
43-
- "ubuntu18.04/**"
44-
- "ubuntu20.04/**"
4519
schedule:
4620
interval: "daily"

.github/renovate.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,6 @@
1010
"dependencies",
1111
"docker"
1212
],
13-
"ignorePaths": [
14-
"azurelinux/**",
15-
"centos7/**",
16-
"centos8/**",
17-
"coreos/**",
18-
"fedora/**",
19-
"flatcar/**",
20-
"photon3.0/**",
21-
"rhel7/**",
22-
"sle15/**",
23-
"ubuntu16.04/**",
24-
"ubuntu18.04/**",
25-
"ubuntu20.04/**"
26-
],
2713
"prConcurrentLimit": 15,
2814
"prHourlyLimit": 0,
2915
"additionalBranchPrefix": "{{packageFileDir}}-",

.gitlab-ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,6 @@ include:
7676
rules:
7777
- if: $CI_PIPELINE_SOURCE != "schedule"
7878

79-
image-ubuntu20.04:
80-
extends:
81-
- .image-build
82-
- .dist-ubuntu20.04
83-
8479
image-ubuntu22.04:
8580
extends:
8681
- .image-build-ubuntu22.04

Makefile

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ OUT_IMAGE_TAG = $(OUT_IMAGE_VERSION)-$(OUT_DIST)
5454
OUT_IMAGE = $(OUT_IMAGE_NAME):$(OUT_IMAGE_TAG)
5555

5656
##### Public rules #####
57-
DISTRIBUTIONS := ubuntu18.04 ubuntu20.04 ubuntu22.04 ubuntu24.04 signed_ubuntu20.04 signed_ubuntu22.04 signed_ubuntu24.04 rhel8 rhel9 rhel10 rocky9 flatcar fedora36 sles15.3 precompiled_rhcos
57+
DISTRIBUTIONS := ubuntu22.04 ubuntu24.04 signed_ubuntu22.04 signed_ubuntu24.04 rhel8 rhel9 rhel10 rocky9 precompiled_rhcos
5858
RHCOS_VERSIONS := rhcos4.14 rhcos4.15 rhcos4.16 rhcos4.17 rhcos4.18 rhel9.6
5959
PUSH_TARGETS := $(patsubst %, push-%, $(DISTRIBUTIONS))
6060
BASE_FROM := noble jammy focal
@@ -90,9 +90,6 @@ pull-%: DRIVER_BRANCH = $(word 1,$(subst ., ,${DRIVER_VERSION}))
9090

9191
$(PULL_TARGETS): %: $(foreach driver_version, $(DRIVER_VERSIONS), $(addprefix %-, $(driver_version)))
9292

93-
pull-signed_ubuntu20.04%: DIST = signed-ubuntu20.04
94-
pull-signed_ubuntu20.04%: DRIVER_TAG = $(DRIVER_BRANCH)
95-
9693
pull-signed_ubuntu22.04%: DIST = ubuntu22.04
9794
pull-signed_ubuntu22.04%: DRIVER_TAG = $(DRIVER_BRANCH)
9895
pull-signed_ubuntu22.04%: IMAGE_TAG = $(DRIVER_BRANCH)-$(KERNEL_VERSION)-$(DIST)
@@ -111,9 +108,6 @@ archive-%: DRIVER_BRANCH = $(word 1,$(subst ., ,${DRIVER_VERSION}))
111108

112109
$(ARCHIVE_TARGETS): %: $(foreach driver_version, $(DRIVER_VERSIONS), $(addprefix %-, $(driver_version)))
113110

114-
archive-signed_ubuntu20.04%: DIST = signed-ubuntu20.04
115-
archive-signed_ubuntu20.04%: DRIVER_TAG = $(DRIVER_BRANCH)
116-
117111
archive-signed_ubuntu22.04%: DIST = ubuntu22.04
118112
archive-signed_ubuntu22.04%: DRIVER_TAG = $(DRIVER_BRANCH)
119113
archive-signed_ubuntu22.04%: IMAGE_TAG = $(if $(VERSION),$(VERSION)-)$(DRIVER_BRANCH)-$(KERNEL_VERSION)-$(DIST)
@@ -131,13 +125,10 @@ push-%: DIST = $(word 2,$(subst -, ,$@))
131125
push-%: DRIVER_VERSION = $(word 3,$(subst -, ,$@))
132126
push-%: DRIVER_BRANCH = $(word 1,$(subst ., ,${DRIVER_VERSION}))
133127

134-
# push-ubuntu20.04 pushes all driver images for ubuntu20.04
135-
# push-ubuntu20.04-$(DRIVER_VERSION) pushes an image for the specific $(DRIVER_VERSION)
128+
# push-ubuntu22.04 pushes all driver images for ubuntu22.04
129+
# push-ubuntu22.04-$(DRIVER_VERSION) pushes an image for the specific $(DRIVER_VERSION)
136130
$(PUSH_TARGETS): %: $(foreach driver_version, $(DRIVER_VERSIONS), $(addprefix %-, $(driver_version)))
137131

138-
push-signed_ubuntu20.04%: DIST = signed-ubuntu20.04
139-
push-signed_ubuntu20.04%: DRIVER_TAG = $(DRIVER_BRANCH)
140-
141132
push-signed_ubuntu22.04%: DIST = ubuntu22.04
142133
push-signed_ubuntu22.04%: DRIVER_TAG = $(DRIVER_BRANCH)
143134
push-signed_ubuntu22.04%: IMAGE_TAG = $(if $(VERSION),$(VERSION)-)$(DRIVER_BRANCH)-$(KERNEL_VERSION)-$(DIST)
@@ -156,8 +147,8 @@ build-%: DRIVER_BRANCH = $(word 1,$(subst ., ,${DRIVER_VERSION}))
156147
build-%: SUBDIR = $(word 2,$(subst -, ,$@))
157148
build-%: DOCKERFILE = $(CURDIR)/$(SUBDIR)/Dockerfile
158149

159-
# Both ubuntu20.04 and build-ubuntu20.04 trigger a build of all driver images for ubuntu20.04
160-
# build-ubuntu20.04-$(DRIVER_VERSION) triggers a build for a specific $(DRIVER_VERSION)
150+
# Both ubuntu22.04 and build-ubuntu22.04 trigger a build of all driver images for ubuntu22.04
151+
# build-ubuntu22.04-$(DRIVER_VERSION) triggers a build for a specific $(DRIVER_VERSION)
161152
$(DISTRIBUTIONS): %: build-%
162153
$(BUILD_TARGETS): %: $(foreach driver_version, $(DRIVER_VERSIONS), $(addprefix %-, $(driver_version)))
163154
$(DRIVER_BUILD_TARGETS):
@@ -180,16 +171,6 @@ build-rhcos%: SUBDIR = rhel9
180171
build-rocky9%: SUBDIR = rhel9
181172
build-rocky9%: DOCKER_BUILD_ARGS = --build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:13.2.1-base-rockylinux9
182173

183-
build-fedora%: SUBDIR = fedora
184-
185-
build-sles15%: SUBDIR = sle15
186-
build-sles%: DOCKER_BUILD_ARGS = --build-arg SLES_VERSION=$(subst sles,,$(word 2,$(subst -, ,$@)))
187-
188-
# ubuntu20.04 Precompiled Driver
189-
build-signed_ubuntu20.04%: DIST = signed-ubuntu20.04
190-
build-signed_ubuntu20.04%: SUBDIR = ubuntu20.04/precompiled
191-
build-signed_ubuntu20.04%: DRIVER_TAG = $(DRIVER_BRANCH)
192-
193174
# ubuntu22.04 Precompiled Driver
194175
build-signed_ubuntu22.04%: DIST = ubuntu22.04
195176
build-signed_ubuntu22.04%: SUBDIR = ubuntu22.04/precompiled

azurelinux/Dockerfile

Lines changed: 0 additions & 30 deletions
This file was deleted.

azurelinux/README.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)