1
0
mirror of synced 2026-02-07 11:15:57 +00:00

Fix Archlinux PKGBUILD check() run on ARM

The check() run started to fail after #2288 since ENVTEST_ARCH was not
set correctly on ARM/ARM64. This should fix the problem for the flux-go
and flux-scm AUR packages.

Signed-off-by: Aurel Canciu <aurelcanciu@gmail.com>
This commit is contained in:
Aurel Canciu
2022-01-14 13:14:44 +01:00
parent 8f93e2a9d4
commit 8e7b957164
2 changed files with 17 additions and 1 deletions

View File

@@ -38,6 +38,14 @@ build() {
check() {
cd "flux2"
case $CARCH in
aarch64)
export ENVTEST_ARCH=arm64
;;
armv6h|armv7h)
export ENVTEST_ARCH=arm
;;
esac
make test
}