From 5b51cca89a8e30d9b9c3aaf9676eeaeecf0a9e64 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 29 Jan 2025 09:55:41 +0100 Subject: [PATCH] github: disable aarch64, ppc64le and s390x build the compiler crashes in random places. Re-enable when it works again. Signed-off-by: Giuseppe Scrivano --- .github/workflows/test.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 973778761b..eee0a89f27 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,12 +15,12 @@ jobs: include: - arch: armv7 distro: ubuntu_latest - - arch: aarch64 - distro: ubuntu_latest - - arch: s390x - distro: ubuntu_latest - - arch: ppc64le - distro: ubuntu_latest +# - arch: aarch64 +# distro: ubuntu_latest +# - arch: s390x +# distro: ubuntu_latest +# - arch: ppc64le +# distro: ubuntu_latest - arch: riscv64 distro: ubuntu_latest steps: @@ -40,7 +40,7 @@ jobs: install: | apt-get update -y - apt-get install -y automake libtool autotools-dev libseccomp-dev git make libcap-dev cmake pkg-config gcc wget go-md2man libsystemd-dev gperf clang-format libyajl-dev libprotobuf-c-dev + apt-get install -y automake libtool autotools-dev libseccomp-dev git make libcap-dev cmake pkg-config gcc wget go-md2man libsystemd-dev gperf clang-format libyajl-dev libprotobuf-c-dev clang run: | find $(pwd) -name '.git' -exec bash -c 'git config --global --add safe.directory ${0%/.git}' {} \;