diff options
author | varac <varacanero@zeromail.org> | 2016-07-05 15:04:29 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-07-05 15:07:45 +0200 |
commit | 0f14cb2e3693a5e5fd0e10d83ba62f67a0be10fa (patch) | |
tree | 84a59db2ae1cf7a99b27b1411b0592e5fd8aea83 /.gitlab-ci.yml | |
parent | f0dda1dd4ec063233b0d266b092d809c6243c354 (diff) |
renenable global before_script in .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 914ffdd5..1d1c725f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,8 @@ -#before_script: - #- echo 'Running global before_script' - #- ruby -v - #- bundle install --path vendor/bundle --jobs $(nproc) "${FLAGS[@]}" - #- git submodule update --init +before_script: + - echo 'Running global before_script' + - ruby -v + - bundle install --path vendor/bundle --jobs $(nproc) "${FLAGS[@]}" + - git submodule update --init stages: - syntax |