From 4562e8d9a24a76c20961a1b8c3cd7105910e54b5 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Wed, 12 Jul 2023 16:01:28 +0200 Subject: [PATCH] fix: do not use GMP on ARM Linux --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d967446e2..a6d85a2c35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,7 +105,7 @@ jobs: binary-check: ldd - name: Linux aarch64 os: ubuntu-latest - CMAKE_OPTIONS: -DCMAKE_PREFIX_PATH=$GMP -DLEAN_INSTALL_SUFFIX=-linux_aarch64 + CMAKE_OPTIONS: -DUSE_GMP=OFF -DLEAN_INSTALL_SUFFIX=-linux_aarch64 release: true cross: true shell: nix-shell --arg pkgsDist "import (fetchTarball \"channel:nixos-19.03\") {{ localSystem.config = \"aarch64-unknown-linux-gnu\"; }}" --run "bash -euxo pipefail {0}"