diff options
-rw-r--r-- | .gitlab-ci.yml | 23 | ||||
-rwxr-xr-x | ci/install.sh | 29 |
2 files changed, 49 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ddfbd8..3bf14c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,25 @@ -before_script: - - gcc --version - - uname -a +stages: + - build + - success + - failure job1: stage: build + image: debian:unstable script: + - ./ci/install.sh - ./build.sh + +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 diff --git a/ci/install.sh b/ci/install.sh new file mode 100755 index 0000000..d143bf3 --- /dev/null +++ b/ci/install.sh @@ -0,0 +1,29 @@ +#!/bin/bash + + +function aptget_update { + apt-get update + if [ "$?" != 0 ]; then + sleep 1s + apt-get update + if [ "$?" != 0 ]; then + sleep 1s + apt-get update + fi + fi +} + +function aptget_install { + apt-get -y -qq install $* + if [ "$?" != 0 ]; then + sleep 1s + apt-get -y -qq install $* + if [ "$?" != 0 ]; then + sleep 2s + apt-get -y -qq install $* + fi + fi +} + +aptget_update +aptget_install gcc g++ gcc-5 g++-5 gcc-5-plugin-dev |