diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-03 19:23:33 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-03 19:23:33 +0200 |
commit | 7a8c870226fca16da3df77320fd61c53974f81da (patch) | |
tree | 9ff06bfe1cbbc938eff7c68fd6cc2c4bb77d0b1f /.gitlab-ci.yml | |
parent | 4a2844e0f9586f3bd16576f0e2d162033dd42d63 (diff) | |
download | Chimère-7a8c870226fca16da3df77320fd61c53974f81da.tar.bz2 Chimère-7a8c870226fca16da3df77320fd61c53974f81da.zip |
Add CI management
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f8d5f4e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +before_script: + - apt-get update + - apt-get install -q -y python3-pip libpq-dev python3-dev + - pip3 install -q -r requirements.txt + - cp Makefile.example Makefile + +variables: + POSTGRES_DB: morrigan + POSTGRES_USER: morrigan + POSTGRES_PASSWORD: "morrigan" + +services: + - postgres:9.1 + +master: + script: "make test_gitlab" + only: + - master |