From 51bbdc7f533c461a90247f07f5379e3b4fda862f Mon Sep 17 00:00:00 2001 From: aliciaaevans Date: Mon, 1 Jul 2024 14:58:24 -0400 Subject: [PATCH] no docker for osx --- .circleci/config.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c47203dd3ec6..3dcff7e211b9a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,13 +52,15 @@ jobs: # a basic unit of work in a run source /opt/mambaforge/etc/profile.d/mamba.sh mamba activate bioconda - # Use SDK with arm64 support - source common.sh - - bioconda-utils build recipes config.yml \ - --lint --docker --mulled-test \ - --docker-base-image "quay.io/bioconda/bioconda-utils-build-env-cos7-$(arch):${BIOCONDA_UTILS_TAG#v}" \ - --git-range origin/master HEAD + if [[ "$platform" == "Darwin" ]]; then + bioconda-utils build recipes config.yml \ + --lint --git-range origin/master HEAD + else + bioconda-utils build recipes config.yml \ + --lint --docker --mulled-test \ + --docker-base-image "quay.io/bioconda/bioconda-utils-build-env-cos7-$(arch):${BIOCONDA_UTILS_TAG#v}" \ + --git-range origin/master HEAD + fi - run: name: Prepare artifacts