Skip to content

Commit

Permalink
Problem: Travis about to go away
Browse files Browse the repository at this point in the history
Solution: add another CI environment: CircleCI
  • Loading branch information
gotcha committed Mar 15, 2021
1 parent 2c0d2c4 commit b8ad13b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2.1
jobs:
test-centos-containers:
parameters:
python-version:
type: string
machine:
image: ubuntu-2004:202101-01
environment:
BUILD_TYPE: centos_containers
PYTHON_VER: << parameters.python-version >>
steps:
- checkout
- run:
command: ./ci_build.sh

workflows:
tests:
jobs:
- test-centos-containers:
matrix:
parameters:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"]

0 comments on commit b8ad13b

Please sign in to comment.