diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-28 00:02:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-28 00:04:40 +0300 |
commit | ee9d33fcb7ca31920ff7b7e019fe3707f0475907 (patch) | |
tree | 2b473a315ff20fd3fafd78eedb68645e0ec66f3e /.gitlab-ci.yml | |
parent | 6fd8ab7369fcd4e119b6ff624ccadb3bcc542411 (diff) | |
download | plugin-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.gz plugin-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.bz2 plugin-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.tar.xz plugin-ee9d33fcb7ca31920ff7b7e019fe3707f0475907.zip |
Add simple gcc 5 build.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 31 |
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 |