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

fix(ci): Stop building unbuildable image based on centos7 #553

Merged
merged 2 commits into from
Jul 9, 2024
Merged
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
14 changes: 0 additions & 14 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,10 @@ jobs:
- { runs_on: "ubuntu-latest", platform: "fedora", arch: "amd64" }
- { runs_on: "ubuntu-latest", platform: "archlinux", arch: "amd64" }
- { runs_on: "ubuntu-latest", platform: "alpine", arch: "amd64" }
- { runs_on: "ubuntu-latest", platform: "centos7", arch: "amd64" }

- { runs_on: ["self-hosted", "arm"], platform: "ubuntu", arch: "arm64" }
- { runs_on: ["self-hosted", "arm"], platform: "fedora", arch: "arm64" }
- { runs_on: ["self-hosted", "arm"], platform: "alpine", arch: "arm64" }
- { runs_on: ["self-hosted", "arm"], platform: "centos7", arch: "arm64" }

- { runs_on: "ubuntu-latest", platform: "alpine", arch: "s390x" }

Expand Down Expand Up @@ -122,17 +120,6 @@ jobs:
ghcr.io/apache/arrow-nanoarrow:ubuntu \
ghcr.io/apache/arrow-nanoarrow:ubuntu-arm64 --arch arm64

docker manifest create \
ghcr.io/apache/arrow-nanoarrow:centos7 \
ghcr.io/apache/arrow-nanoarrow:centos7-amd64 \
ghcr.io/apache/arrow-nanoarrow:centos7-arm64
docker manifest annotate \
ghcr.io/apache/arrow-nanoarrow:centos7 \
ghcr.io/apache/arrow-nanoarrow:centos7-amd64 --arch amd64
docker manifest annotate \
ghcr.io/apache/arrow-nanoarrow:centos7 \
ghcr.io/apache/arrow-nanoarrow:centos7-arm64 --arch arm64

docker manifest create \
ghcr.io/apache/arrow-nanoarrow:fedora \
ghcr.io/apache/arrow-nanoarrow:fedora-amd64 \
Expand Down Expand Up @@ -164,5 +151,4 @@ jobs:
run: |
docker manifest push ghcr.io/apache/arrow-nanoarrow:ubuntu
docker manifest push ghcr.io/apache/arrow-nanoarrow:fedora
docker manifest push ghcr.io/apache/arrow-nanoarrow:centos7
docker manifest push ghcr.io/apache/arrow-nanoarrow:alpine
Loading