Skip to content
Snippets Groups Projects
Commit 0f327e02 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Skip irrelevant jobs for documentation only changes

parent ef518df2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -68,6 +68,12 @@ stages:
- //@gitlab-org/gitlab-ee
- //@gitlab/gitlab-ee
 
# Skip all jobs except the ones that begin with 'docs/', for commits
# including ONLY doc changes inside the 'doc/` directory.
.except-docs: &except-docs
except:
- /^docs\/*/
.rspec-knapsack: &rspec-knapsack
stage: test
<<: *dedicated-runner
Loading
Loading
@@ -91,11 +97,13 @@ stages:
.rspec-knapsack-pg: &rspec-knapsack-pg
<<: *rspec-knapsack
<<: *use-pg
<<: *except-docs
 
.rspec-knapsack-mysql: &rspec-knapsack-mysql
<<: *rspec-knapsack
<<: *use-mysql
<<: *only-master-and-ee-or-mysql
<<: *except-docs
 
.spinach-knapsack: &spinach-knapsack
stage: test
Loading
Loading
@@ -120,16 +128,19 @@ stages:
.spinach-knapsack-pg: &spinach-knapsack-pg
<<: *spinach-knapsack
<<: *use-pg
<<: *except-docs
 
.spinach-knapsack-mysql: &spinach-knapsack-mysql
<<: *spinach-knapsack
<<: *use-mysql
<<: *only-master-and-ee-or-mysql
<<: *except-docs
 
# Prepare and merge knapsack tests
knapsack:
<<: *knapsack-state
<<: *dedicated-runner
<<: *except-docs
stage: prepare
script:
- mkdir -p knapsack/${CI_PROJECT_NAME}/
Loading
Loading
@@ -156,6 +167,7 @@ update-knapsack:
setup-test-env:
<<: *use-pg
<<: *dedicated-runner
<<: *except-docs
stage: prepare
script:
- node --version
Loading
Loading
@@ -243,6 +255,7 @@ spinach mysql 9 10: *spinach-knapsack-mysql
.exec: &exec
<<: *ruby-static-analysis
<<: *dedicated-runner
<<: *except-docs
stage: test
script:
- bundle exec $CI_JOB_NAME
Loading
Loading
@@ -250,6 +263,7 @@ spinach mysql 9 10: *spinach-knapsack-mysql
rubocop:
<<: *ruby-static-analysis
<<: *dedicated-runner
<<: *except-docs
stage: test
script:
- bundle exec "rubocop --require rubocop-rspec"
Loading
Loading
@@ -266,6 +280,7 @@ rake downtime_check:
- master
- tags
- /^[\d-]+-stable(-ee)?$/
- /^docs\/*/
 
rake ee_compat_check:
<<: *exec
Loading
Loading
@@ -296,10 +311,12 @@ rake ee_compat_check:
rake pg db:migrate:reset:
<<: *db-migrate-reset
<<: *use-pg
<<: *except-docs
 
rake mysql db:migrate:reset:
<<: *db-migrate-reset
<<: *use-mysql
<<: *except-docs
 
.db-rollback: &db-rollback
stage: test
Loading
Loading
@@ -311,10 +328,12 @@ rake mysql db:migrate:reset:
rake pg db:rollback:
<<: *db-rollback
<<: *use-pg
<<: *except-docs
 
rake mysql db:rollback:
<<: *db-rollback
<<: *use-mysql
<<: *except-docs
 
.db-seed_fu: &db-seed_fu
stage: test
Loading
Loading
@@ -336,14 +355,17 @@ rake mysql db:rollback:
rake pg db:seed_fu:
<<: *db-seed_fu
<<: *use-pg
<<: *except-docs
 
rake mysql db:seed_fu:
<<: *db-seed_fu
<<: *use-mysql
<<: *except-docs
 
rake gitlab:assets:compile:
stage: test
<<: *dedicated-runner
<<: *except-docs
dependencies: []
variables:
NODE_ENV: "production"
Loading
Loading
@@ -367,6 +389,7 @@ rake karma:
stage: test
<<: *use-pg
<<: *dedicated-runner
<<: *except-docs
variables:
BABEL_ENV: "coverage"
script:
Loading
Loading
@@ -447,6 +470,7 @@ coverage:
stage: post-test
services: []
<<: *dedicated-runner
<<: *except-docs
variables:
SETUP_DB: "false"
USE_BUNDLE_INSTALL: "true"
Loading
Loading
@@ -462,6 +486,7 @@ coverage:
 
lint:javascript:
<<: *dedicated-runner
<<: *except-docs
stage: test
before_script: []
script:
Loading
Loading
@@ -469,6 +494,7 @@ lint:javascript:
 
lint:javascript:report:
<<: *dedicated-runner
<<: *except-docs
stage: post-test
before_script: []
script:
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment