diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-20 01:47:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-20 01:47:37 -0400 |
commit | c604f63f4e20382ca802d103a60c99ff8aeadd35 (patch) | |
tree | c3e0db1a319a717e4253bac940c76cba77e284e9 /.circleci | |
parent | b5c64e7b6e059c5f6b5848d7b2b87ff2fcff1a7f (diff) | |
download | spmc-c604f63f4e20382ca802d103a60c99ff8aeadd35.tar.gz |
Omit installation test on MacOS
Diffstat (limited to '.circleci')
-rwxr-xr-x | .circleci/test_spm.sh | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/.circleci/test_spm.sh b/.circleci/test_spm.sh index f016e52..eb141e5 100755 --- a/.circleci/test_spm.sh +++ b/.circleci/test_spm.sh @@ -13,25 +13,27 @@ spm --list spm --search zlib -spm --verbose --yes --root $PREFIX --install python +if [[ $(uname -s) == Linux ]]; then + spm --verbose --yes --root $PREFIX --install python -set +x -echo ACTIVATING ROOT: $PREFIX -spm --cmd mkruntime $PREFIX > $PREFIX/bin/activate || exit 1 -source $PREFIX/bin/activate || exit 1 -echo OK! -set -x + set +x + echo ACTIVATING ROOT: $PREFIX + spm --cmd mkruntime $PREFIX > $PREFIX/bin/activate || exit 1 + source $PREFIX/bin/activate || exit 1 + echo OK! + set -x -which python3 + which python3 -python3 -V + python3 -V -python3 -c 'from sysconfig import get_config_vars; from pprint import pprint; pprint(get_config_vars())' + python3 -c 'from sysconfig import get_config_vars; from pprint import pprint; pprint(get_config_vars())' -python3 -m ensurepip + python3 -m ensurepip -pip3 --version + pip3 --version -pip3 install --upgrade pip setuptools + pip3 install --upgrade pip setuptools -pip3 --version + pip3 --version +fi |