From c1b1e12ae26bf715c32e6ca8d52a93833ec209dd Mon Sep 17 00:00:00 2001 From: Justin Wozniak Date: Wed, 11 Sep 2024 14:05:38 -0500 Subject: [PATCH] Debug condition --- dev/jenkins/anaconda.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/jenkins/anaconda.sh b/dev/jenkins/anaconda.sh index 1e01b4b0f..7658164a6 100755 --- a/dev/jenkins/anaconda.sh +++ b/dev/jenkins/anaconda.sh @@ -84,6 +84,7 @@ if [[ ${RUNNER_OS:-0} == "macOS" ]] { # Set CONDA_ARCH, the name for our chip in the Miniconda download: # Set CONDA_PLATFORM, the name for our platform # in our Anaconda builder + set -x if [[ ${RUNNER_ARCH:-0} == "ARM64" ]] { # On GitHub, we may be on ARM: CONDA_ARCH="arm64" @@ -95,6 +96,7 @@ if [[ ${RUNNER_ARCH:-0} == "ARM64" ]] { Linux) CONDA_PLATFORM="linux-64" ;; } } +set +x # The Miniconda we are working with: CONDA_LABEL=${CONDA_TIMESTAMP}-${CONDA_OS}-${CONDA_ARCH}