From c19572a34a7af9fcac89b8f18fd4549a87d5b6e1 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 12 Jul 2022 09:58:14 -0400 Subject: Remove circleci config. It's stale and now broken. --- .circleci/config.yml | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 4f6da680..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,52 +0,0 @@ -version: 2 -jobs: - macos-build: - macos: - xcode: "12.2.0" - - steps: - - run: brew install pyenv readline xz - - - run: |- - # https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-environment-variables - echo ' - export PYENV_ROOT="$HOME/.pyenv" - export PATH="$PYENV_ROOT/bin:$PATH" - ' >> $BASH_ENV - - - run: |- - for py_ver in 3.7.0 3.6.4 - do - pyenv install "$py_ver" & - done - wait - - run: pyenv global 3.7.0 3.6.4 - - - run: python3 -m pip install --upgrade pip wheel - - run: python3 -m pip install tox tox-pyenv - - checkout - - run: tox -e py36,py37 -- -p no:sugar - - store_test_results: - path: .test-results - - store_artifacts: - path: .test-results - - linux-build: - docker: - - image: randomknowledge/docker-pyenv-tox - - steps: - - checkout - - run: pip install tox - - run: tox -e py36,py37 - - store_test_results: - path: .test-results - - store_artifacts: - path: .test-results - -workflows: - version: 2 - test-linux-and-macos: - jobs: - - macos-build - - linux-build -- cgit v1.2.1