Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add CI config
  • Loading branch information
inducer committed Jun 17, 2015
1 parent f390f25 commit 7dd4d33
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,27 @@
Python 2.7:
script:
- py_version=2.7
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- ". ./build-and-test-py-project.sh"
tags:
- python2.7
except:
- tags
Python 3.4:
script:
- py_version=3.4
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- ". ./build-and-test-py-project.sh"
tags:
- python3.4
except:
- tags
Python 2.6:
script:
- py_version=2.6
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- ". ./build-and-test-py-project.sh"
tags:
- python2.6
except:
- tags

0 comments on commit 7dd4d33

Please sign in to comment.