diff options
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc0d2b71174..083093bed53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,8 +31,14 @@ variables: before_script: - bundle --version + - date - source scripts/utils.sh + - date - source scripts/prepare_build.sh + - date + +after_script: + - date stages: - build @@ -383,6 +389,7 @@ spinach-mysql 4 5: *spinach-metadata-mysql <<: *pull-cache stage: test script: + - date - bundle exec rake $CI_JOB_NAME static-analysis: @@ -431,10 +438,8 @@ ee_compat_check: - branches@gitlab/gitlab-ee allow_failure: yes retry: 0 - cache: - key: "ee_compat_check_repo" - paths: - - ee_compat_check/ee-repo/ + dependencies: + - setup-test-env artifacts: name: "${CI_JOB_NAME}_${CI_COMIT_REF_NAME}_${CI_COMMIT_SHA}" when: on_failure |