diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2880f4834..6552ad1c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,6 @@ stages: - build - test -- fail -- ok before_script: - uname -a @@ -40,16 +38,6 @@ variables: services: - mysql:latest -.mysql_init_5.5: - stage: build - script: - - ./.tools/jobs/install.sh "mysql-client" - - ./.tools/jobs/clonedata.sh - - ./.tools/jobs/initdb.sh mysql - image: debian:jessie - services: - - mysql:5.5 - mysql_init_5.6: stage: build script: @@ -199,20 +187,4 @@ spaces: when: always expire_in: 3 week -ok_job: - stage: ok - script: - - pwd - - echo $CI_BUILD_REF_NAME - when: on_success - variables: - GIT_STRATEGY: none - -fail_job: - stage: fail - script: - - pwd - - echo $CI_BUILD_REF_NAME - when: on_failure - variables: - GIT_STRATEGY: none + |