summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-28 00:02:47 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-28 00:04:40 +0300
commitee9d33fcb7ca31920ff7b7e019fe3707f0475907 (patch)
tree2b473a315ff20fd3fafd78eedb68645e0ec66f3e /.gitlab-ci.yml
parent6fd8ab7369fcd4e119b6ff624ccadb3bcc542411 (diff)
downloadevol-hercules-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.gz
evol-hercules-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.bz2
evol-hercules-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.xz
evol-hercules-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.zip
Add simple gcc 5 build.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..13f759b
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,31 @@
+stages:
+ - build
+ - success
+ - failure
+
+before_script:
+ - uname -a
+
+# simple builds
+
+gcc-5:
+ stage: build
+ script:
+ - ./tools/ci/jobs/gcc5.sh
+ image: debian:unstable
+
+# reports
+
+success:
+ stage: success
+ script:
+ - echo "do nothing"
+ image: debian:unstable
+ when: on_success
+
+failure:
+ stage: failure
+ script:
+ - echo "do nothing"
+ image: debian:unstable
+ when: on_failure