From 032e518d5066bb7034dbdc621a491808fff5e869 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Fri, 18 May 2018 13:41:55 -0400 Subject: [PATCH] Updated CircleCI configuration to use better 32-bit docker image --- .circleci/config.yml | 20 ++++++++++++++++++++ circle.yml | 11 ----------- 2 files changed, 20 insertions(+), 11 deletions(-) create mode 100644 .circleci/config.yml delete mode 100644 circle.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f82602a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 + +jobs: + 32bit: + docker: + - image: quay.io/pypa/manylinux1_i686 + steps: + - checkout + - run: + name: Install dependencies + command: /opt/python/cp36-cp36m/bin/pip install numpy astropy pytest-astropy Cython hypothesis + - run: + name: Run tests + command: /opt/python/cp36-cp36m/bin/python setup.py test + +workflows: + version: 2 + build_and_test: + jobs: + - 32bit diff --git a/circle.yml b/circle.yml deleted file mode 100644 index beaae1e..0000000 --- a/circle.yml +++ /dev/null @@ -1,11 +0,0 @@ -machine: - services: - - docker - -dependencies: - override: - - docker pull astropy/affiliated-32bit-test-env:1.7 - -test: - override: - - ./.run_docker_tests.sh