Skip to content
Snippets Groups Projects
Select Git revision
  • set-default-auto-stop-setting
  • dev-doc-amazon-q
  • release-tools/update-kas
  • jennli-ensure-qa-suite-status-env-file-exists
  • 514952-add-reassignment-event-tracking
  • irisb-master-patch-85646
  • update-public-development-stages-doc
  • update-table-sizes-2025-03-09--uz-boq1bwxml-p-yr-pw
  • overdue-finalize-background-migration--delete-orphaned-partitioned-ci-runner-machine-records
  • overdue-finalize-background-migration--backfill-ci-job-artifact-states-project-id
  • update-table-sizes-2025-03-09--y-c35-ki-fia-pd-d88-d-w
  • overdue-finalize-background-migration--create-jira-cloud-app-integration-for-jira-connect-subscription
  • 523982-vue3-migration-delete_branch_modal_spec
  • openbao_secret_permissions
  • master default protected
  • rails-next protected
  • ruby-next protected
  • fix-ai-framework-events-with-no-internal-events-property
  • gitlab_main_application_settings_and_static
  • 469603-add-detail-to-other-label
  • v17.7.6-ee protected
  • v17.8.4-ee protected
  • v17.9.1-ee protected
  • v17.8.3-ee protected
  • v17.7.5-ee protected
  • v17.9.0-ee protected
  • v17.9.0-rc42-ee protected
  • v17.6.5-ee protected
  • v17.7.4-ee protected
  • v17.8.2-ee protected
  • v17.6.4-ee protected
  • v17.7.3-ee protected
  • v17.8.1-ee protected
  • v17.8.0-ee protected
  • v17.7.2-ee protected
  • v17.8.0-rc42-ee protected
  • v17.5.5-ee protected
  • v17.6.3-ee protected
  • v17.7.1-ee protected
  • v17.7.0-ee protected
40 results

.gitlab-ci.yml

  • Yorick Peterse's avatar
    eaa00678
    Sync stable branches to CE upon a push · eaa00678
    Yorick Peterse authored
    This adds a CI job that runs before all other jobs on a stable branch,
    triggering a Merge Train job to sync the stable branch to CE. No checks
    are in place for older stable branches, as those simply won't have these
    changes.
    Verified
    eaa00678
    History
    Sync stable branches to CE upon a push
    Yorick Peterse authored
    This adds a CI job that runs before all other jobs on a stable branch,
    triggering a Merge Train job to sync the stable branch to CE. No checks
    are in place for older stable branches, as those simply won't have these
    changes.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 1.31 KiB
image: "registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.6.3-golang-1.11-git-2.22-chrome-73.0-node-12.x-yarn-1.16-postgresql-9.6-graphicsmagick-1.3.33"

stages:
  - sync
  - prepare
  - quick-test
  - test
  - review-prepare
  - review
  - qa
  - post-test
  - pages

variables:
  RAILS_ENV: "test"
  NODE_ENV: "test"
  SIMPLECOV: "true"
  GIT_DEPTH: "50"
  GIT_SUBMODULE_STRATEGY: "none"
  GET_SOURCES_ATTEMPTS: "3"
  KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/report-master.json
  FLAKY_RSPEC_SUITE_REPORT_PATH: rspec_flaky/report-suite.json
  BUILD_ASSETS_IMAGE: "false"
  ES_JAVA_OPTS: "-Xms256m -Xmx256m"
  ELASTIC_URL: "http://elastic:changeme@docker.elastic.co-elasticsearch-elasticsearch:9200"

after_script:
  - date

include:
  - local: .gitlab/ci/cng.gitlab-ci.yml
  - local: .gitlab/ci/docs.gitlab-ci.yml
  - local: .gitlab/ci/frontend.gitlab-ci.yml
  - local: .gitlab/ci/global.gitlab-ci.yml
  - local: .gitlab/ci/memory.gitlab-ci.yml
  - local: .gitlab/ci/pages.gitlab-ci.yml
  - local: .gitlab/ci/qa.gitlab-ci.yml
  - local: .gitlab/ci/reports.gitlab-ci.yml
  - local: .gitlab/ci/rails.gitlab-ci.yml
  - local: .gitlab/ci/review.gitlab-ci.yml
  - local: .gitlab/ci/setup.gitlab-ci.yml
  - local: .gitlab/ci/test-metadata.gitlab-ci.yml
  - local: .gitlab/ci/yaml.gitlab-ci.yml
  - local: .gitlab/ci/releases.gitlab-ci.yml