From 5678eca848f453993a63e8fb97f923862c700f7f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 18 Apr 2016 18:20:02 +0300 Subject: Add ci script, update .gitlab-ci.yml --- .gitlab-ci.yml | 23 ++++++++++++++++++++--- ci/install.sh | 29 +++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 3 deletions(-) create mode 100755 ci/install.sh 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 -- cgit v1.2.3-70-g09d2