From 65b7bf9f3e3437e8887630e477c2abd749a7f0ac Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Mon, 3 Apr 2023 10:51:38 +0200 Subject: [PATCH] Add Apple M1 testing via Cirrus CI --- cirrus.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cirrus.yml diff --git a/cirrus.yml b/cirrus.yml new file mode 100644 index 000000000..d16eb811a --- /dev/null +++ b/cirrus.yml @@ -0,0 +1,10 @@ +macos_instance: + image: ghcr.io/cirruslabs/macos-monterey-xcode:latest + +task: + compile_script: + - brew install llvm + - export PATH=/opt/homebrew/opt/llvm/bin:$PATH + - export LDFLAGS="-L/opt/homebrew/opt/llvm/lib" + - export CPPFLAGS="-I/opt/homebrew/opt/llvm/include" + - make TARGET=VORTEX USE_OPENMP=1 CC=clang