Skip to content

Commit

Permalink
Merge pull request #205 from Muscraft/remove-buster
Browse files Browse the repository at this point in the history
fix!: Remove EOL Debian Buster
  • Loading branch information
Muscraft authored Jul 1, 2024
2 parents 4197463 + bccfc8f commit 1a07514
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 95 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ jobs:
matrix:
include:
#VERSIONS
- name: buster
variant: buster
- name: slim-buster
variant: buster/slim
- name: bullseye
variant: bullseye
- name: slim-bullseye
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@ jobs:
matrix:
include:
#VERSIONS
- name: buster
context: nightly/buster
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386
tags: |
nightly-buster
- name: slim-buster
context: nightly/buster/slim
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386
tags: |
nightly-buster-slim
- name: bullseye
context: nightly/bullseye
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/386,linux/ppc64le,linux/s390x
Expand Down
28 changes: 0 additions & 28 deletions 1.79.0/buster/Dockerfile

This file was deleted.

39 changes: 0 additions & 39 deletions 1.79.0/buster/slim/Dockerfile

This file was deleted.

14 changes: 0 additions & 14 deletions x.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,11 @@
DebianArch("arm32v7", "armhf", "linux/arm/v7", "armv7-unknown-linux-gnueabihf"),
DebianArch("arm64v8", "arm64", "linux/arm64", "aarch64-unknown-linux-gnu"),
DebianArch("i386", "i386", "linux/386", "i686-unknown-linux-gnu"),
]

debian_non_buster_arches = [
DebianArch("ppc64le", "ppc64el", "linux/ppc64le", "powerpc64le-unknown-linux-gnu"),
DebianArch("s390x", "s390x", "linux/s390x", "s390x-unknown-linux-gnu"),
]

debian_variants = [
"buster",
"bullseye",
"bookworm",
]
Expand Down Expand Up @@ -77,11 +73,6 @@ def update_debian():

for variant in debian_variants:
case = arch_case
if variant != "buster":
for arch in debian_non_buster_arches:
hash = rustup_hash(arch.rust)
case += f" {arch.dpkg}) rustArch='{arch.rust}'; rustupSha256='{hash}' ;; \\\n"

case += end

for rust_version in supported_rust_versions:
Expand Down Expand Up @@ -153,9 +144,6 @@ def update_nightly_ci():
platforms = []
for arch in debian_arches:
platforms.append(f"{arch.qemu}")
if variant != "buster":
for arch in debian_non_buster_arches:
platforms.append(f"{arch.qemu}")
platforms = ",".join(platforms)

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

arches = debian_arches[:]
if variant != "buster":
arches += debian_non_buster_arches

library += single_library(
tags,
Expand Down

0 comments on commit 1a07514

Please sign in to comment.