From a42b9c938c225a720a9c66aec4dd6ba32e6a7f1e Mon Sep 17 00:00:00 2001 From: Umberto Raimondi Date: Sat, 27 Jan 2024 18:58:32 +0100 Subject: [PATCH] Remove fedora from failing platforms --- .github/workflows/test.yml | 2 +- Dockerfiles/Dockerfile.armv7.fedora_latest | 4 ---- README.md | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 Dockerfiles/Dockerfile.armv7.fedora_latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e50695dc..26ea5474 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: distro: bullseye - arch: s390x distro: bullseye - - arch: armv7 + - arch: aarch64 distro: fedora_latest - arch: riscv64 distro: alpine_edge diff --git a/Dockerfiles/Dockerfile.armv7.fedora_latest b/Dockerfiles/Dockerfile.armv7.fedora_latest deleted file mode 100644 index 5b3f9780..00000000 --- a/Dockerfiles/Dockerfile.armv7.fedora_latest +++ /dev/null @@ -1,4 +0,0 @@ -FROM arm32v7/fedora:latest - -COPY ./run-on-arch-install.sh /root/run-on-arch-install.sh -RUN chmod +x /root/run-on-arch-install.sh && /root/run-on-arch-install.sh diff --git a/README.md b/README.md index 9b4a7cab..550e9067 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A GitHub Action that executes commands on non-x86 CPU architecture (armv6, armv7 This action requires three input parameters: * `arch`: CPU architecture: `armv6`, `armv7`, `aarch64`, `riscv64`, `s390x`, or `ppc64le`. See [Supported Platforms](#supported-platforms) for the full matrix. -* `distro`: Linux distribution name: `ubuntu20.04`, `bullseye`, `buster`, `stretch`, `fedora_latest`, `alpine_latest` or `archarm_latest`. See [Supported Platforms](#supported-platforms) for the full matrix. +* `distro`: Linux distribution name: `ubuntu22.04`,`ubuntu20.04`, `bullseye`, `buster`, `stretch`, `fedora_latest`, `alpine_latest` or `archarm_latest`. See [Supported Platforms](#supported-platforms) for the full matrix. * `run`: Shell commands to execute in the container. The action also accepts some optional input parameters: