@@ -7,6 +7,9 @@ set -euo pipefail
77FLUX_RELEASE_VERSION=${FLUX_RELEASE_VERSION:- 0.68.0}
88FLUX_VERSION=${FLUX_VERSION:- 0.68.0}
99
10+ # Ensure we find micromamba environment first
11+ export PATH=/opt/conda/bin:$PATH
12+
1013if [[ " $( uname) " == " Darwin" ]]; then
1114 brew install \
1215 autoconf \
@@ -36,8 +39,6 @@ if [[ "$(uname)" == "Darwin" ]]; then
3639 export DYLD_LIBRARY_PATH=/usr/local/lib
3740
3841 # Ensure we activate micromamabe that has a pinned version
39- eval " $( micromamba shell hook --shell bash) " || micromamba shell reinit --shell bash
40- micromamba activate build-env
4142 echo " Found MacOS Python $( which python3) "
4243 PIP_INSTALL=" python3 -m pip install"
4344 ln -s $( which glibtoolize) /usr/local/bin/libtoolize
@@ -136,10 +137,12 @@ chmod +x etc/gen-cmdhelp.py
136137
137138./autogen.sh || echo " No autogen here"
138139
140+ export PYTHON=/opt/conda/bin/python3
141+
139142if [[ " $( uname) " == " Darwin" ]]; then
140- CPPFLAGS=" $CPPFLAGS " LDFLAGS=$LDFLAGS PKG_CONFIG_PATH=$PKG_CONFIG_PATH \
141- ./configure --with-external-libev --prefix=/usr/local
142- ./scripts/check-macos.sh
143+ CPPFLAGS=" $CPPFLAGS " LDFLAGS=$LDFLAGS PKG_CONFIG_PATH=$PKG_CONFIG_PATH ./configure --prefix=/usr/local
144+ ls ./scripts
145+ ./scripts/check-macos.sh || echo " No check-macos.sh "
143146else
144147 ./configure --prefix=/usr/local
145148 make VERBOSE=1
0 commit comments