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 c398e5b commit 51943e2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,30 @@
Python 2.7:
script:
- py_version=2.7
- EXTRA_INSTALL=numpy
- 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
- EXTRA_INSTALL=numpy
- 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
- EXTRA_INSTALL=numpy
- 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 51943e2

Please sign in to comment.