Skip to content

Commit

Permalink
Integration test: Adjust citus check to correctly exclude aarch64
Browse files Browse the repository at this point in the history
In passing, use "uname -m" instead of "uname -p", since "-m" is the
more standard flag to use.
  • Loading branch information
lfittl committed Feb 3, 2024
1 parent 827ce6b commit 8082e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ docker_run_cmd_postgres = $(call docker_run_cmd,postgres -c pg_stat_statements.t
TARGETS := pg10 pg11 pg12 pg13 pg14 pg15 pg16 reload guided-setup installer

# Citus doesn't release ARM images, thus skip on ARM
ifneq ($(shell uname -p), arm)
ifeq ($(findstring $(shell uname -m),arm64 aarch64),)
TARGETS += citus
endif

Expand Down

0 comments on commit 8082e8c

Please sign in to comment.