diff options
author | Rémy Coutable <remy@rymai.me> | 2017-10-17 13:00:10 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-03-06 16:22:10 +0100 |
commit | 6fbeb985d2a57563dfa8f7b31c1b386d1c9cad12 (patch) | |
tree | 1f27a8cf73b10bdcf9bab5ec4c79369ca1d30367 | |
parent | 5e8138aa54492dd3ace42d889ba01f82e8e19c83 (diff) | |
download | gitlab-ce-6fbeb985d2a57563dfa8f7b31c1b386d1c9cad12.tar.gz |
Add date calls in .gitlab-ci.yml to see how long each step take
Signed-off-by: Rémy Coutable <remy@rymai.me>
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b489f1a07c..33f14f24048 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,8 +35,14 @@ variables: before_script: - bundle --version + - date - source scripts/utils.sh + - date - source scripts/prepare_build.sh + - date + +after_script: + - date stages: - build @@ -299,7 +305,9 @@ compile-assets: <<: *default-cache script: - node --version + - date - yarn install --frozen-lockfile --cache-folder .yarn-cache + - date - bundle exec rake gitlab:assets:compile artifacts: expire_in: 7d @@ -498,11 +506,15 @@ db:check-schema-pg: - git fetch https://gitlab.com/gitlab-org/gitlab-ce.git v9.3.0 - git checkout -f FETCH_HEAD - bundle install $BUNDLE_INSTALL_FLAGS + - date - cp config/gitlab.yml.example config/gitlab.yml - bundle exec rake db:drop db:create db:schema:load db:seed_fu + - date - git checkout $CI_COMMIT_SHA - bundle install $BUNDLE_INSTALL_FLAGS + - date - . scripts/prepare_build.sh + - date - bundle exec rake db:migrate migration:path-pg: @@ -574,7 +586,9 @@ gitlab:assets:compile: WEBPACK_REPORT: "true" NO_COMPRESSION: "true" script: + - date - yarn install --frozen-lockfile --production --cache-folder .yarn-cache + - date - bundle exec rake gitlab:assets:compile artifacts: name: webpack-report @@ -592,8 +606,11 @@ karma: BABEL_ENV: "coverage" CHROME_LOG_FILE: "chrome_debug.log" script: + - date - scripts/gitaly-test-spawn + - date - bundle exec rake gettext:po_to_json + - date - bundle exec rake karma coverage: '/^Statements *: (\d+\.\d+%)/' artifacts: @@ -691,7 +708,9 @@ lint:javascript:report: - setup-test-env before_script: [] script: + - date - find app/ spec/ -name '*.js' -exec sed --in-place 's|/\* eslint-disable .*\*/||' {} \; # run report over all files + - date - yarn run eslint-report || true # ignore exit code artifacts: name: eslint-report |