12 lines
195 B
Bash
12 lines
195 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
if [[ "$(uname -s)" == 'Darwin' ]]; then
|
|
if which pyenv > /dev/null; then
|
|
eval "$(pyenv init -)"
|
|
fi
|
|
pyenv activate conan
|
|
fi
|
|
|
|
python .ci/build.py
|