Skip to content

Commit

Permalink
Use the correct Mac M1 platform and OS checks
Browse files Browse the repository at this point in the history
  • Loading branch information
eapolinario committed Jan 25, 2023
1 parent b217f6d commit d345c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MOCK_FLYTE_REPO=tests/flytekit/integration/remote/mock_flyte_repo/workflows

# Detect if it is running on a Mac M1.
# We need to special-case M1's because of tensorflow. More details in https://github.com/flyteorg/flyte/issues/3264
ifneq (,$(and $(findstring Linux, $(shell uname -s)), $(findstring x86_64, $(shell uname -p))))
ifneq (,$(and $(findstring Darwin, $(shell uname -s)), $(findstring arm, $(shell uname -p))))
DEV_REQUIREMENTS_SUFFIX=-mac_arm64
else
DEV_REQUIREMENTS_SUFFIX=
Expand Down

0 comments on commit d345c63

Please sign in to comment.