Skip to content

Commit 1a07514

Browse files
authored
Merge pull request #205 from Muscraft/remove-buster
fix!: Remove EOL Debian Buster
2 parents 4197463 + bccfc8f commit 1a07514

File tree

5 files changed

+0
-95
lines changed

5 files changed

+0
-95
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ jobs:
2424
matrix:
2525
include:
2626
#VERSIONS
27-
- name: buster
28-
variant: buster
29-
- name: slim-buster
30-
variant: buster/slim
3127
- name: bullseye
3228
variant: bullseye
3329
- name: slim-bullseye

.github/workflows/nightly.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ jobs:
2121
matrix:
2222
include:
2323
#VERSIONS
24-
- name: buster
25-
context: nightly/buster
26-
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386
27-
tags: |
28-
nightly-buster
29-
- name: slim-buster
30-
context: nightly/buster/slim
31-
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386
32-
tags: |
33-
nightly-buster-slim
3424
- name: bullseye
3525
context: nightly/bullseye
3626
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386,linux/ppc64le,linux/s390x

1.79.0/buster/Dockerfile

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

1.79.0/buster/slim/Dockerfile

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

x.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,11 @@
1717
DebianArch("arm32v7", "armhf", "linux/arm/v7", "armv7-unknown-linux-gnueabihf"),
1818
DebianArch("arm64v8", "arm64", "linux/arm64", "aarch64-unknown-linux-gnu"),
1919
DebianArch("i386", "i386", "linux/386", "i686-unknown-linux-gnu"),
20-
]
21-
22-
debian_non_buster_arches = [
2320
DebianArch("ppc64le", "ppc64el", "linux/ppc64le", "powerpc64le-unknown-linux-gnu"),
2421
DebianArch("s390x", "s390x", "linux/s390x", "s390x-unknown-linux-gnu"),
2522
]
2623

2724
debian_variants = [
28-
"buster",
2925
"bullseye",
3026
"bookworm",
3127
]
@@ -77,11 +73,6 @@ def update_debian():
7773

7874
for variant in debian_variants:
7975
case = arch_case
80-
if variant != "buster":
81-
for arch in debian_non_buster_arches:
82-
hash = rustup_hash(arch.rust)
83-
case += f" {arch.dpkg}) rustArch='{arch.rust}'; rustupSha256='{hash}' ;; \\\n"
84-
8576
case += end
8677

8778
for rust_version in supported_rust_versions:
@@ -153,9 +144,6 @@ def update_nightly_ci():
153144
platforms = []
154145
for arch in debian_arches:
155146
platforms.append(f"{arch.qemu}")
156-
if variant != "buster":
157-
for arch in debian_non_buster_arches:
158-
platforms.append(f"{arch.qemu}")
159147
platforms = ",".join(platforms)
160148

161149
tags = [f"nightly-{variant}"]
@@ -243,8 +231,6 @@ def generate_stackbrew_library():
243231
tags.append("latest")
244232

245233
arches = debian_arches[:]
246-
if variant != "buster":
247-
arches += debian_non_buster_arches
248234

249235
library += single_library(
250236
tags,

0 commit comments

Comments
 (0)