diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-05-07 06:11:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 06:11:13 -0400 |
commit | 26db5dff18a40b402d20a572953870aab549c5f2 (patch) | |
tree | 539d6a9800f41efad4ed50b1864aae1e677ccded /.circleci | |
parent | 6cc450d8ff714af09374f9bc07aea8bb05f74a5c (diff) | |
parent | de47b0d91a79651088e76d64dc4b032146203cca (diff) | |
download | spmc-26db5dff18a40b402d20a572953870aab549c5f2.tar.gz |
Merge pull request #33 from jhunkeler/install-name-tool
Install name tool (etc...)
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 1 | ||||
-rwxr-xr-x | .circleci/init.sh | 1 | ||||
-rwxr-xr-x | .circleci/test_spm.sh | 30 |
3 files changed, 16 insertions, 16 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 258d452..8b16216 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,6 +51,7 @@ jobs: HOMEBREW_NO_AUTO_UPDATE: 1 DYLD_INSERT_LIBRARIES: /usr/lib/libgmalloc.dylib TEST_RESULTS: /tmp/test-results + PKG_CONFIG_PATH: /usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/curl/lib/pkgconfig steps: - checkout diff --git a/.circleci/init.sh b/.circleci/init.sh index 24b2f81..6a25d16 100755 --- a/.circleci/init.sh +++ b/.circleci/init.sh @@ -22,6 +22,7 @@ if [[ $(uname -s) == Linux ]]; then elif [[ $(uname -s) == Darwin ]]; then brew install cmake \ + curl \ gnu-tar \ openssl@1.1 fi diff --git a/.circleci/test_spm.sh b/.circleci/test_spm.sh index 104e8fb..bd9e19e 100755 --- a/.circleci/test_spm.sh +++ b/.circleci/test_spm.sh @@ -18,27 +18,25 @@ spm --list spm --search zlib -if [[ $(uname -s) == Linux ]]; then - spm --verbose --yes --root $PREFIX --install python +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 -fi +pip3 --version |