Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/ci/static-analysis.gitlab-ci.yml')
-rw-r--r--.gitlab/ci/static-analysis.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/ci/static-analysis.gitlab-ci.yml b/.gitlab/ci/static-analysis.gitlab-ci.yml
index a9e806f12a3..f3b4b31ad84 100644
--- a/.gitlab/ci/static-analysis.gitlab-ci.yml
+++ b/.gitlab/ci/static-analysis.gitlab-ci.yml
@@ -97,7 +97,7 @@ haml-lint:
- .ruby-cache
- .static-analysis:rules:haml-lint
script:
- - run_timed_command "bin/rake 'haml_lint[app/views]'"
+ - run_timed_command "bundle exec haml-lint --parallel app/views"
artifacts:
expire_in: 31d
when: always
@@ -109,7 +109,7 @@ haml-lint ee:
- "haml-lint"
- .static-analysis:rules:haml-lint-ee
script:
- - run_timed_command "bin/rake 'haml_lint[ee/app/views]'"
+ - run_timed_command "bundle exec haml-lint --parallel ee/app/views"
rubocop:
extends: