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 5db2e99
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2.1
jobs:
test:
parameters:
build-type:
type: string
python-version:
type: string
machine:
image: ubuntu-2004:202101-01
environment:
BUILD_TYPE: << parameters.build-type >>
PYTHON_VER: << parameters.python-version >>
steps:
- checkout
- run:
command: ./ci_build.sh

workflows:
tests:
jobs:
- test:
matrix:
parameters:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"]
build-type: ["centos_containers", "debian_containers"]

0 comments on commit 5db2e99

Please sign in to comment.