Skip to content
Snippets Groups Projects
Verified Commit 57e69af1 authored by Furkan Ayhan's avatar Furkan Ayhan Committed by GitLab
Browse files

Update .gitlab-ci.yml file

parent 4168969d
No related branches found
No related tags found
No related merge requests found
Pipeline #21730834 canceled
image: "dev.gitlab.org:5005/gitlab/gitlab-build-images:ruby-2.3.3-golang-1.8-git-2.7-phantomjs-2.1-node-7.1-postgresql-9.6" test1:
stage: test
cache: script: exit 0
key: "ruby-233-with-yarn" rules:
paths: - exists:
- vendor/ruby - helpers/*.abcxyz # not exist
- .yarn-cache/ - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
variables: - presenters/**/.abcxyz # not exist
MYSQL_ALLOW_EMPTY_PASSWORD: "1" - requests/**/.abcxyz # not exist
RAILS_ENV: "test" - spec/*.abcyz # this file does not exist so this job should not be included
NODE_ENV: "test"
SIMPLECOV: "true" test2:
GIT_DEPTH: "20" stage: test
GIT_SUBMODULE_STRATEGY: "none" script: exit 0
PHANTOMJS_VERSION: "2.1.1" rules:
GET_SOURCES_ATTEMPTS: "3" - exists:
KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/${CI_PROJECT_NAME}/rspec_report-master.json - helpers/*.abcxyz # not exist
KNAPSACK_SPINACH_SUITE_REPORT_PATH: knapsack/${CI_PROJECT_NAME}/spinach_report-master.json - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
before_script: - presenters/**/.abcxyz # not exist
- bundle --version - requests/**/.abcxyz # not exist
- source scripts/utils.sh - spec/*.rb # this file does exist so this job should be included
- source scripts/prepare_build.sh
test3:
stages: stage: test
- build script: exit 0
- prepare rules:
- test - exists:
- post-test - helpers/*.abcxyz # not exist
- pages - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
# Predefined scopes - presenters/**/.abcxyz # not exist
.dedicated-runner: &dedicated-runner - requests/**/.abcxyz # not exist
tags: - policies/*.rb # exists
- gitlab-org
test4:
.knapsack-state: &knapsack-state stage: test
services: [] script: exit 0
variables: rules:
SETUP_DB: "false" - exists:
USE_BUNDLE_INSTALL: "false" - helpers/*.abcxyz # not exist
KNAPSACK_S3_BUCKET: "gitlab-ce-cache" - initializers/*.abcxyz # not exist
cache: - models/*.abcxyz # not exist
key: "knapsack" - presenters/**/.abcxyz # not exist
paths: - requests/**/.abcxyz # not exist
- knapsack/ - policies/*.rb # exists
artifacts:
expire_in: 31d test5:
paths: stage: test
- knapsack/ script: exit 0
rules:
.use-pg: &use-pg - exists:
services: - helpers/*.abcxyz # not exist
- postgres:latest - initializers/*.abcxyz # not exist
- redis:alpine - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
.use-mysql: &use-mysql - requests/**/.abcxyz # not exist
services: - policies/*.rb # exists
- mysql:latest test6:
- redis:alpine stage: test
script: exit 0
.only-master-and-ee-or-mysql: &only-master-and-ee-or-mysql rules:
only: - exists:
- /mysql/ - helpers/*.abcxyz # not exist
- master@gitlab-org/gitlab-ce - initializers/*.abcxyz # not exist
- master@gitlab/gitlabhq - models/*.abcxyz # not exist
- tags@gitlab-org/gitlab-ce - presenters/**/.abcxyz # not exist
- tags@gitlab/gitlabhq - requests/**/.abcxyz # not exist
- //@gitlab-org/gitlab-ee - policies/*.rb # exists
- //@gitlab/gitlab-ee test7:
stage: test
# Skip all jobs except the ones that begin with 'docs/'. script: exit 0
# Used for commits including ONLY documentation changes. rules:
# https://docs.gitlab.com/ce/development/writing_documentation.html#testing - exists:
.except-docs: &except-docs - helpers/*.abcxyz # not exist
except: - initializers/*.abcxyz # not exist
- /(^docs[\/-].*|.*-docs$)/ - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
.rspec-knapsack: &rspec-knapsack - requests/**/.abcxyz # not exist
stage: test - policies/*.rb # exists
<<: *dedicated-runner test8:
script: stage: test
- JOB_NAME=( $CI_JOB_NAME ) script: exit 0
- export CI_NODE_INDEX=${JOB_NAME[-2]} rules:
- export CI_NODE_TOTAL=${JOB_NAME[-1]} - exists:
- export KNAPSACK_REPORT_PATH=knapsack/${CI_PROJECT_NAME}/${JOB_NAME[0]}_node_${CI_NODE_INDEX}_${CI_NODE_TOTAL}_report.json - helpers/*.abcxyz # not exist
- export KNAPSACK_GENERATE_REPORT=true - initializers/*.abcxyz # not exist
- export CACHE_CLASSES=true - models/*.abcxyz # not exist
- cp ${KNAPSACK_RSPEC_SUITE_REPORT_PATH} ${KNAPSACK_REPORT_PATH} - presenters/**/.abcxyz # not exist
- knapsack rspec "--color --format documentation" - requests/**/.abcxyz # not exist
artifacts: - policies/*.rb # exists
expire_in: 31d
when: always test9:
paths: stage: test
- coverage/ script: exit 0
- knapsack/ rules:
- tmp/capybara/ - exists:
- helpers/*.abcxyz # not exist
.rspec-knapsack-pg: &rspec-knapsack-pg - initializers/*.abcxyz # not exist
<<: *rspec-knapsack - models/*.abcxyz # not exist
<<: *use-pg - presenters/**/.abcxyz # not exist
<<: *except-docs - requests/**/.abcxyz # not exist
- policies/*.rb # exists
.rspec-knapsack-mysql: &rspec-knapsack-mysql
<<: *rspec-knapsack test10:
<<: *use-mysql stage: test
<<: *only-master-and-ee-or-mysql script: exit 0
<<: *except-docs rules:
- exists:
.spinach-knapsack: &spinach-knapsack - helpers/*.abcxyz # not exist
stage: test - initializers/*.abcxyz # not exist
<<: *dedicated-runner - models/*.abcxyz # not exist
script: - presenters/**/.abcxyz # not exist
- JOB_NAME=( $CI_JOB_NAME ) - requests/**/.abcxyz # not exist
- export CI_NODE_INDEX=${JOB_NAME[-2]} - policies/*.rb # exists
- export CI_NODE_TOTAL=${JOB_NAME[-1]}
- export KNAPSACK_REPORT_PATH=knapsack/${CI_PROJECT_NAME}/${JOB_NAME[0]}_node_${CI_NODE_INDEX}_${CI_NODE_TOTAL}_report.json test11:
- export KNAPSACK_GENERATE_REPORT=true stage: test
- export CACHE_CLASSES=true script: exit 0
- cp ${KNAPSACK_SPINACH_SUITE_REPORT_PATH} ${KNAPSACK_REPORT_PATH} rules:
- knapsack spinach "-r rerun" || retry '[[ -e tmp/spinach-rerun.txt ]] && bundle exec spinach -r rerun $(cat tmp/spinach-rerun.txt)' - exists:
artifacts: - helpers/*.abcxyz # not exist
expire_in: 31d - initializers/*.abcxyz # not exist
when: always - models/*.abcxyz # not exist
paths: - presenters/**/.abcxyz # not exist
- coverage/ - requests/**/.abcxyz # not exist
- knapsack/ - policies/*.rb # exists
- tmp/capybara/
test12:
.spinach-knapsack-pg: &spinach-knapsack-pg stage: test
<<: *spinach-knapsack script: exit 0
<<: *use-pg rules:
<<: *except-docs - exists:
- helpers/*.abcxyz # not exist
.spinach-knapsack-mysql: &spinach-knapsack-mysql - initializers/*.abcxyz # not exist
<<: *spinach-knapsack - models/*.abcxyz # not exist
<<: *use-mysql - presenters/**/.abcxyz # not exist
<<: *only-master-and-ee-or-mysql - requests/**/.abcxyz # not exist
<<: *except-docs - policies/*.rb # exists
.only-canonical-masters: &only-canonical-masters test13:
only: stage: test
- master@gitlab-org/gitlab-ce script: exit 0
- master@gitlab-org/gitlab-ee rules:
- master@gitlab/gitlabhq - exists:
- master@gitlab/gitlab-ee - helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
# Trigger a package build on omnibus-gitlab repository - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
build-package: - requests/**/.abcxyz # not exist
before_script: [] - policies/*.rb # exists
services: []
variables: test14:
SETUP_DB: "false" stage: test
USE_BUNDLE_INSTALL: "false" script: exit 0
stage: build rules:
when: manual - exists:
script: - helpers/*.abcxyz # not exist
- scripts/trigger-build - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
# Prepare and merge knapsack tests - presenters/**/.abcxyz # not exist
knapsack: - requests/**/.abcxyz # not exist
<<: *knapsack-state - policies/*.rb # exists
<<: *dedicated-runner
<<: *except-docs test15:
stage: prepare stage: test
script: script: exit 0
- mkdir -p knapsack/${CI_PROJECT_NAME}/ rules:
- wget -O $KNAPSACK_RSPEC_SUITE_REPORT_PATH http://${KNAPSACK_S3_BUCKET}.s3.amazonaws.com/$KNAPSACK_RSPEC_SUITE_REPORT_PATH || rm $KNAPSACK_RSPEC_SUITE_REPORT_PATH - exists:
- wget -O $KNAPSACK_SPINACH_SUITE_REPORT_PATH http://${KNAPSACK_S3_BUCKET}.s3.amazonaws.com/$KNAPSACK_SPINACH_SUITE_REPORT_PATH || rm $KNAPSACK_SPINACH_SUITE_REPORT_PATH - helpers/*.abcxyz # not exist
- '[[ -f $KNAPSACK_RSPEC_SUITE_REPORT_PATH ]] || echo "{}" > ${KNAPSACK_RSPEC_SUITE_REPORT_PATH}' - initializers/*.abcxyz # not exist
- '[[ -f $KNAPSACK_SPINACH_SUITE_REPORT_PATH ]] || echo "{}" > ${KNAPSACK_SPINACH_SUITE_REPORT_PATH}' - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
update-knapsack: - requests/**/.abcxyz # not exist
<<: *knapsack-state - policies/*.rb # exists
<<: *dedicated-runner
<<: *only-canonical-masters test16:
stage: post-test stage: test
script: script: exit 0
- scripts/merge-reports ${KNAPSACK_RSPEC_SUITE_REPORT_PATH} knapsack/${CI_PROJECT_NAME}/rspec-pg_node_*.json rules:
- scripts/merge-reports ${KNAPSACK_SPINACH_SUITE_REPORT_PATH} knapsack/${CI_PROJECT_NAME}/spinach-pg_node_*.json - exists:
- '[[ -z ${KNAPSACK_S3_BUCKET} ]] || scripts/sync-reports put $KNAPSACK_S3_BUCKET $KNAPSACK_RSPEC_SUITE_REPORT_PATH $KNAPSACK_SPINACH_SUITE_REPORT_PATH' - helpers/*.abcxyz # not exist
- rm -f knapsack/${CI_PROJECT_NAME}/*_node_*.json - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
setup-test-env: - presenters/**/.abcxyz # not exist
<<: *use-pg - requests/**/.abcxyz # not exist
<<: *dedicated-runner - policies/*.rb # exists
<<: *except-docs
stage: prepare test17:
script: stage: test
- node --version script: exit 0
- yarn install --pure-lockfile --cache-folder .yarn-cache rules:
- bundle exec rake gitlab:assets:compile - exists:
- bundle exec ruby -Ispec -e 'require "spec_helper" ; TestEnv.init' - helpers/*.abcxyz # not exist
artifacts: - initializers/*.abcxyz # not exist
expire_in: 7d - models/*.abcxyz # not exist
paths: - presenters/**/.abcxyz # not exist
- node_modules - requests/**/.abcxyz # not exist
- public/assets - policies/*.rb # exists
- tmp/tests
test18:
rspec-pg 0 20: *rspec-knapsack-pg stage: test
rspec-pg 1 20: *rspec-knapsack-pg script: exit 0
rspec-pg 2 20: *rspec-knapsack-pg rules:
rspec-pg 3 20: *rspec-knapsack-pg - exists:
rspec-pg 4 20: *rspec-knapsack-pg - helpers/*.abcxyz # not exist
rspec-pg 5 20: *rspec-knapsack-pg - initializers/*.abcxyz # not exist
rspec-pg 6 20: *rspec-knapsack-pg - models/*.abcxyz # not exist
rspec-pg 7 20: *rspec-knapsack-pg - presenters/**/.abcxyz # not exist
rspec-pg 8 20: *rspec-knapsack-pg - requests/**/.abcxyz # not exist
rspec-pg 9 20: *rspec-knapsack-pg - policies/*.rb # exists
rspec-pg 10 20: *rspec-knapsack-pg
rspec-pg 11 20: *rspec-knapsack-pg test19:
rspec-pg 12 20: *rspec-knapsack-pg stage: test
rspec-pg 13 20: *rspec-knapsack-pg script: exit 0
rspec-pg 14 20: *rspec-knapsack-pg rules:
rspec-pg 15 20: *rspec-knapsack-pg - exists:
rspec-pg 16 20: *rspec-knapsack-pg - helpers/*.abcxyz # not exist
rspec-pg 17 20: *rspec-knapsack-pg - initializers/*.abcxyz # not exist
rspec-pg 18 20: *rspec-knapsack-pg - models/*.abcxyz # not exist
rspec-pg 19 20: *rspec-knapsack-pg - presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
rspec-mysql 0 20: *rspec-knapsack-mysql - policies/*.rb # exists
rspec-mysql 1 20: *rspec-knapsack-mysql
rspec-mysql 2 20: *rspec-knapsack-mysql test20:
rspec-mysql 3 20: *rspec-knapsack-mysql stage: test
rspec-mysql 4 20: *rspec-knapsack-mysql script: exit 0
rspec-mysql 5 20: *rspec-knapsack-mysql rules:
rspec-mysql 6 20: *rspec-knapsack-mysql - exists:
rspec-mysql 7 20: *rspec-knapsack-mysql - helpers/*.abcxyz # not exist
rspec-mysql 8 20: *rspec-knapsack-mysql - initializers/*.abcxyz # not exist
rspec-mysql 9 20: *rspec-knapsack-mysql - models/*.abcxyz # not exist
rspec-mysql 10 20: *rspec-knapsack-mysql - presenters/**/.abcxyz # not exist
rspec-mysql 11 20: *rspec-knapsack-mysql - requests/**/.abcxyz # not exist
rspec-mysql 12 20: *rspec-knapsack-mysql - policies/*.rb # exists
rspec-mysql 13 20: *rspec-knapsack-mysql
rspec-mysql 14 20: *rspec-knapsack-mysql
rspec-mysql 15 20: *rspec-knapsack-mysql test21:
rspec-mysql 16 20: *rspec-knapsack-mysql stage: test
rspec-mysql 17 20: *rspec-knapsack-mysql script: exit 0
rspec-mysql 18 20: *rspec-knapsack-mysql rules:
rspec-mysql 19 20: *rspec-knapsack-mysql - exists:
- helpers/*.abcxyz # not exist
spinach-pg 0 10: *spinach-knapsack-pg - initializers/*.abcxyz # not exist
spinach-pg 1 10: *spinach-knapsack-pg - models/*.abcxyz # not exist
spinach-pg 2 10: *spinach-knapsack-pg - presenters/**/.abcxyz # not exist
spinach-pg 3 10: *spinach-knapsack-pg - requests/**/.abcxyz # not exist
spinach-pg 4 10: *spinach-knapsack-pg - policies/*.rb # exists
spinach-pg 5 10: *spinach-knapsack-pg
spinach-pg 6 10: *spinach-knapsack-pg
spinach-pg 7 10: *spinach-knapsack-pg test22:
spinach-pg 8 10: *spinach-knapsack-pg stage: test
spinach-pg 9 10: *spinach-knapsack-pg script: exit 0
rules:
spinach-mysql 0 10: *spinach-knapsack-mysql - exists:
spinach-mysql 1 10: *spinach-knapsack-mysql - helpers/*.abcxyz # not exist
spinach-mysql 2 10: *spinach-knapsack-mysql - initializers/*.abcxyz # not exist
spinach-mysql 3 10: *spinach-knapsack-mysql - models/*.abcxyz # not exist
spinach-mysql 4 10: *spinach-knapsack-mysql - presenters/**/.abcxyz # not exist
spinach-mysql 5 10: *spinach-knapsack-mysql - requests/**/.abcxyz # not exist
spinach-mysql 6 10: *spinach-knapsack-mysql - policies/*.rb # exists
spinach-mysql 7 10: *spinach-knapsack-mysql
spinach-mysql 8 10: *spinach-knapsack-mysql
spinach-mysql 9 10: *spinach-knapsack-mysql test23:
stage: test
# Static analysis jobs script: exit 0
.ruby-static-analysis: &ruby-static-analysis rules:
variables: - exists:
SIMPLECOV: "false" - helpers/*.abcxyz # not exist
SETUP_DB: "false" - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
.rake-exec: &rake-exec - presenters/**/.abcxyz # not exist
<<: *ruby-static-analysis - requests/**/.abcxyz # not exist
<<: *dedicated-runner - policies/*.rb # exists
<<: *except-docs
stage: test
script: test24:
- bundle exec rake $CI_JOB_NAME stage: test
script: exit 0
static-analysis: rules:
<<: *ruby-static-analysis - exists:
<<: *dedicated-runner - helpers/*.abcxyz # not exist
<<: *except-docs - initializers/*.abcxyz # not exist
stage: test - models/*.abcxyz # not exist
script: - presenters/**/.abcxyz # not exist
- scripts/static-analysis - requests/**/.abcxyz # not exist
- policies/*.rb # exists
# Documentation checks:
# - Check validity of relative links
# - Make sure cURL examples in API docs use the full switches test25:
docs lint: stage: test
image: "registry.gitlab.com/gitlab-org/gitlab-build-images:nanoc-bootstrap-ruby-2.4-alpine" script: exit 0
stage: test rules:
<<: *dedicated-runner - exists:
cache: {} - helpers/*.abcxyz # not exist
dependencies: [] - initializers/*.abcxyz # not exist
before_script: [] - models/*.abcxyz # not exist
script: - presenters/**/.abcxyz # not exist
- scripts/lint-doc.sh - requests/**/.abcxyz # not exist
- mv doc/ /nanoc/content/ - policies/*.rb # exists
- cd /nanoc
# Build HTML from Markdown
- bundle exec nanoc test26:
# Check the internal links stage: test
- bundle exec nanoc check internal_links script: exit 0
rules:
downtime_check: - exists:
<<: *rake-exec - helpers/*.abcxyz # not exist
except: - initializers/*.abcxyz # not exist
- master - models/*.abcxyz # not exist
- tags - presenters/**/.abcxyz # not exist
- /^[\d-]+-stable(-ee)?$/ - requests/**/.abcxyz # not exist
- /(^docs[\/-].*|.*-docs$)/ - policies/*.rb # exists
ee_compat_check:
<<: *rake-exec test27:
only: stage: test
- branches@gitlab-org/gitlab-ce script: exit 0
except: rules:
- master - exists:
- tags - helpers/*.abcxyz # not exist
- /^[\d-]+-stable(-ee)?$/ - initializers/*.abcxyz # not exist
allow_failure: yes - models/*.abcxyz # not exist
cache: - presenters/**/.abcxyz # not exist
key: "ee_compat_check_repo" - requests/**/.abcxyz # not exist
paths: - policies/*.rb # exists
- ee_compat_check/ee-repo/
artifacts:
name: "${CI_JOB_NAME}_${CI_COMIT_REF_NAME}_${CI_COMMIT_SHA}"
when: on_failure test31:
expire_in: 10d stage: test
paths: script: exit 0
- ee_compat_check/patches/*.patch rules:
- exists:
# DB migration, rollback, and seed jobs - helpers/*.abcxyz # not exist
.db-migrate-reset: &db-migrate-reset - initializers/*.abcxyz # not exist
stage: test - models/*.abcxyz # not exist
<<: *dedicated-runner - presenters/**/.abcxyz # not exist
<<: *except-docs - requests/**/.abcxyz # not exist
script: - policies/*.rb # exists
- bundle exec rake db:migrate:reset
db:migrate:reset-pg: test32:
<<: *db-migrate-reset stage: test
<<: *use-pg script: exit 0
rules:
db:migrate:reset-mysql: - exists:
<<: *db-migrate-reset - helpers/*.abcxyz # not exist
<<: *use-mysql - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
.migration-paths: &migration-paths - presenters/**/.abcxyz # not exist
stage: test - requests/**/.abcxyz # not exist
<<: *dedicated-runner - policies/*.rb # exists
variables:
SETUP_DB: "false"
<<: *only-canonical-masters test33:
script: stage: test
- git fetch origin v8.14.10 script: exit 0
- git checkout -f FETCH_HEAD rules:
- bundle install $BUNDLE_INSTALL_FLAGS - exists:
- bundle exec rake db:drop db:create db:schema:load db:seed_fu - helpers/*.abcxyz # not exist
- git checkout $CI_COMMIT_SHA - initializers/*.abcxyz # not exist
- bundle install $BUNDLE_INSTALL_FLAGS - models/*.abcxyz # not exist
- . scripts/prepare_build.sh - presenters/**/.abcxyz # not exist
- bundle exec rake db:migrate - requests/**/.abcxyz # not exist
- policies/*.rb # exists
migration:path-pg:
<<: *migration-paths
<<: *use-pg test34:
stage: test
migration:path-mysql: script: exit 0
<<: *migration-paths rules:
<<: *use-mysql - exists:
- helpers/*.abcxyz # not exist
.db-rollback: &db-rollback - initializers/*.abcxyz # not exist
stage: test - models/*.abcxyz # not exist
<<: *dedicated-runner - presenters/**/.abcxyz # not exist
<<: *except-docs - requests/**/.abcxyz # not exist
script: - policies/*.rb # exists
- bundle exec rake db:rollback STEP=120
- bundle exec rake db:migrate
test35:
db:rollback-pg: stage: test
<<: *db-rollback script: exit 0
<<: *use-pg rules:
- exists:
db:rollback-mysql: - helpers/*.abcxyz # not exist
<<: *db-rollback - initializers/*.abcxyz # not exist
<<: *use-mysql - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
.db-seed_fu: &db-seed_fu - requests/**/.abcxyz # not exist
stage: test - policies/*.rb # exists
<<: *dedicated-runner
<<: *except-docs
variables: test36:
SIZE: "1" stage: test
SETUP_DB: "false" script: exit 0
RAILS_ENV: "development" rules:
script: - exists:
- git clone https://gitlab.com/gitlab-org/gitlab-test.git - helpers/*.abcxyz # not exist
/home/git/repositories/gitlab-org/gitlab-test.git - initializers/*.abcxyz # not exist
- bundle exec rake db:setup db:seed_fu - models/*.abcxyz # not exist
artifacts: - presenters/**/.abcxyz # not exist
when: on_failure - requests/**/.abcxyz # not exist
expire_in: 1d - policies/*.rb # exists
paths:
- log/development.log
test37:
db:seed_fu-pg: stage: test
<<: *db-seed_fu script: exit 0
<<: *use-pg rules:
- exists:
db:seed_fu-mysql: - helpers/*.abcxyz # not exist
<<: *db-seed_fu - initializers/*.abcxyz # not exist
<<: *use-mysql - models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
# Frontend-related jobs - requests/**/.abcxyz # not exist
gitlab:assets:compile: - policies/*.rb # exists
stage: test
<<: *dedicated-runner
<<: *except-docs test41:
dependencies: [] stage: test
variables: script: exit 0
NODE_ENV: "production" rules:
RAILS_ENV: "production" - exists:
SETUP_DB: "false" - helpers/*.abcxyz # not exist
USE_DB: "false" - initializers/*.abcxyz # not exist
SKIP_STORAGE_VALIDATION: "true" - models/*.abcxyz # not exist
WEBPACK_REPORT: "true" - presenters/**/.abcxyz # not exist
script: - requests/**/.abcxyz # not exist
- yarn install --pure-lockfile --production --cache-folder .yarn-cache - policies/*.rb # exists
- bundle exec rake gitlab:assets:compile
artifacts:
name: webpack-report test42:
expire_in: 31d stage: test
paths: script: exit 0
- webpack-report/ rules:
- exists:
karma: - helpers/*.abcxyz # not exist
stage: test - initializers/*.abcxyz # not exist
<<: *use-pg - models/*.abcxyz # not exist
<<: *dedicated-runner - presenters/**/.abcxyz # not exist
<<: *except-docs - requests/**/.abcxyz # not exist
variables: - policies/*.rb # exists
BABEL_ENV: "coverage"
script:
- bundle exec rake karma test43:
coverage: '/^Statements *: (\d+\.\d+%)/' stage: test
artifacts: script: exit 0
name: coverage-javascript rules:
expire_in: 31d - exists:
paths: - helpers/*.abcxyz # not exist
- coverage-javascript/ - initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
coverage: - presenters/**/.abcxyz # not exist
stage: post-test - requests/**/.abcxyz # not exist
services: [] - policies/*.rb # exists
<<: *dedicated-runner
<<: *except-docs
variables: test44:
SETUP_DB: "false" stage: test
USE_BUNDLE_INSTALL: "true" script: exit 0
script: rules:
- bundle exec scripts/merge-simplecov - exists:
coverage: '/LOC \((\d+\.\d+%)\) covered.$/' - helpers/*.abcxyz # not exist
artifacts: - initializers/*.abcxyz # not exist
name: coverage - models/*.abcxyz # not exist
expire_in: 31d - presenters/**/.abcxyz # not exist
paths: - requests/**/.abcxyz # not exist
- coverage/index.html - policies/*.rb # exists
- coverage/assets/
lint:javascript:report: test45:
<<: *dedicated-runner stage: test
<<: *except-docs script: exit 0
stage: post-test rules:
before_script: [] - exists:
script: - helpers/*.abcxyz # not exist
- find app/ spec/ -name '*.js' -exec sed --in-place 's|/\* eslint-disable .*\*/||' {} \; # run report over all files - initializers/*.abcxyz # not exist
- yarn run eslint-report || true # ignore exit code - models/*.abcxyz # not exist
artifacts: - presenters/**/.abcxyz # not exist
name: eslint-report - requests/**/.abcxyz # not exist
expire_in: 31d - policies/*.rb # exists
paths:
- eslint-report.html
test46:
# Trigger docs build stage: test
# https://gitlab.com/gitlab-com/doc-gitlab-com/blob/master/README.md#deployment-process script: exit 0
trigger_docs: rules:
stage: post-test - exists:
image: "alpine" - helpers/*.abcxyz # not exist
<<: *dedicated-runner - initializers/*.abcxyz # not exist
before_script: - models/*.abcxyz # not exist
- apk update && apk add curl - presenters/**/.abcxyz # not exist
variables: - requests/**/.abcxyz # not exist
GIT_STRATEGY: "none" - policies/*.rb # exists
cache: {}
artifacts: {}
script: test47:
- "HTTP_STATUS=$(curl -X POST -F token=${DOCS_TRIGGER_TOKEN} -F ref=master -F variables[PROJECT]=${CI_PROJECT_NAME} --silent --output curl.log --write-out '%{http_code}' https://gitlab.com/api/v3/projects/1794617/trigger/builds)" stage: test
- if [ "${HTTP_STATUS}" -ne "201" ]; then echo "Error ${HTTP_STATUS}"; cat curl.log; echo; exit 1; fi script: exit 0
only: rules:
- master@gitlab-org/gitlab-ce - exists:
- master@gitlab-org/gitlab-ee - helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
pages: - models/*.abcxyz # not exist
before_script: [] - presenters/**/.abcxyz # not exist
stage: pages - requests/**/.abcxyz # not exist
<<: *dedicated-runner - policies/*.rb # exists
dependencies:
- coverage
- karma
- gitlab:assets:compile test51:
- lint:javascript:report stage: test
script: script: exit 0
- mv public/ .public/ rules:
- mkdir public/ - exists:
- mv coverage/ public/coverage-ruby/ || true - helpers/*.abcxyz # not exist
- mv coverage-javascript/ public/coverage-javascript/ || true - initializers/*.abcxyz # not exist
- mv eslint-report.html public/ || true - models/*.abcxyz # not exist
- mv webpack-report/ public/webpack-report/ || true - presenters/**/.abcxyz # not exist
artifacts: - requests/**/.abcxyz # not exist
paths: - policies/*.rb # exists
- public
only:
- master@gitlab-org/gitlab-ce test52:
- master@gitlab-org/gitlab-ee stage: test
script: exit 0
# Insurance in case a gem needed by one of our releases gets yanked from rules:
# rubygems.org in the future. - exists:
cache gems: - helpers/*.abcxyz # not exist
<<: *dedicated-runner - initializers/*.abcxyz # not exist
only: - models/*.abcxyz # not exist
- tags - presenters/**/.abcxyz # not exist
variables: - requests/**/.abcxyz # not exist
SETUP_DB: "false" - policies/*.rb # exists
script:
- bundle package --all --all-platforms
artifacts: test53:
paths: stage: test
- vendor/cache script: exit 0
only: rules:
- master@gitlab-org/gitlab-ce - exists:
- master@gitlab-org/gitlab-ee - helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test54:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test55:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test56:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test57:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test61:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test62:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test63:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test64:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test65:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test66:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test67:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test71:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test72:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test73:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test74:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test75:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test76:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test77:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test81:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test82:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test83:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test84:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test85:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test86:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test87:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test91:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test92:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test93:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test94:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test95:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test96:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
test97:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx1:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- spec/*.abcyz # this file does not exist so this job should not be included
testxx2:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- spec/*.rb # this file does exist so this job should be included
testxx3:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx4:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx5:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx6:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx7:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx8:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx9:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx10:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx11:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx12:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx13:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx14:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx15:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx16:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx17:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx18:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx19:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx20:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx21:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx22:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx23:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx24:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx25:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx26:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx27:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx31:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx32:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx33:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx34:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx35:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx36:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx37:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx41:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx42:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx43:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx44:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx45:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx46:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx47:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx51:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx52:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx53:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx54:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx55:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx56:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx57:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx61:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx62:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx63:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx64:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx65:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx66:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx67:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx71:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx72:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx73:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx74:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx75:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx76:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx77:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx81:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx82:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx83:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx84:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx85:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx86:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx87:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx91:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx92:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx93:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx94:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx95:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx96:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
testxx97:
stage: test
script: exit 0
rules:
- exists:
- helpers/*.abcxyz # not exist
- initializers/*.abcxyz # not exist
- models/*.abcxyz # not exist
- presenters/**/.abcxyz # not exist
- requests/**/.abcxyz # not exist
- policies/*.rb # exists
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