From f4ba7a722a6fab6bb6267d76dc1c449cffc3f66a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B4nio=20Camargo?= Date: Sun, 3 Nov 2024 00:58:39 -0700 Subject: [PATCH] Skip OSX --- recipes/reseek/build.sh | 7 +------ recipes/reseek/conda_build_config.yaml | 4 ---- recipes/reseek/meta.yaml | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 recipes/reseek/conda_build_config.yaml diff --git a/recipes/reseek/build.sh b/recipes/reseek/build.sh index d40704f7557ba..db61203aa3f99 100644 --- a/recipes/reseek/build.sh +++ b/recipes/reseek/build.sh @@ -7,12 +7,7 @@ echo "0" > gitver.txt cp ${RECIPE_DIR}/vcxproj_make.py . chmod +x vcxproj_make.py - -if [ "$(uname)" == "Darwin" ]; then - ./vcxproj_make.py --openmp --cppcompiler ${CXX} --ccompiler ${CC} -else - ./vcxproj_make.py --openmp --cppcompiler ${CXX} --ccompiler ${CC} -fi +./vcxproj_make.py --openmp --cppcompiler ${CXX} --ccompiler ${CC} # Verify binary exists and is executable if [ ! -f ../bin/reseek ]; then diff --git a/recipes/reseek/conda_build_config.yaml b/recipes/reseek/conda_build_config.yaml deleted file mode 100644 index 09e492b293ae1..0000000000000 --- a/recipes/reseek/conda_build_config.yaml +++ /dev/null @@ -1,4 +0,0 @@ -cxx_compiler_version: - - 18 # [osx] -c_compiler_version: - - 18 # [osx] diff --git a/recipes/reseek/meta.yaml b/recipes/reseek/meta.yaml index bb86b4c8d11d9..334df5bf224a4 100644 --- a/recipes/reseek/meta.yaml +++ b/recipes/reseek/meta.yaml @@ -11,6 +11,7 @@ source: build: number: 0 + skip: True #[osx] run_exports: - {{ pin_subpackage(name, max_pin="x.x") }} @@ -19,7 +20,6 @@ requirements: build: - {{ compiler("cxx") }} - {{ compiler("c") }} - - llvm-openmp # [osx] - make test: