Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
block_exclude_pages
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
block_exclude_pages
Merge requests
!7
Add new .gitlab-ci.yml file from template
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add new .gitlab-ci.yml file from template
issue/block_exclude_pages-3433065:3433065-add-gitlab-ci
into
2.1.x
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Ben Stallings
requested to merge
issue/block_exclude_pages-3433065:3433065-add-gitlab-ci
into
2.1.x
9 months ago
Overview
0
Commits
2
Pipelines
3
Changes
1
Expand
Closes
#3433065
👍
0
👎
0
Merge request reports
Compare
2.1.x
version 1
04339bf9
9 months ago
2.1.x (base)
and
latest version
latest version
243a06d3
2 commits,
7 months ago
version 1
04339bf9
1 commit,
9 months ago
1 file
+
38
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
38
−
0
Options
################
# GitLabCI template for Drupal projects.
#
# This template is designed to give any Contrib maintainer everything they need to test, without requiring modification.
# It is also designed to keep up to date with Core Development automatically through the use of include files that can be centrally maintained.
# As long as you include the project, ref and three files below, any future updates added by the Drupal Association will be used in your
# pipelines automatically. However, you can modify this template if you have additional needs for your project.
# The full documentation is on https://project.pages.drupalcode.org/gitlab_templates/
################
# For information on alternative values for 'ref' see https://project.pages.drupalcode.org/gitlab_templates/info/templates-version/
# To test a Drupal 7 project, change the first include filename from .main.yml to .main-d7.yml
include
:
-
project
:
$_GITLAB_TEMPLATES_REPO
ref
:
$_GITLAB_TEMPLATES_REF
file
:
-
'
/includes/include.drupalci.main.yml'
-
'
/includes/include.drupalci.variables.yml'
-
'
/includes/include.drupalci.workflows.yml'
################
# Pipeline configuration variables are defined with default values and descriptions in the file
# https://git.drupalcode.org/project/gitlab_templates/-/blob/main/includes/include.drupalci.variables.yml
# Uncomment the lines below if you want to override any of the variables. The following is just an example.
################
variables
:
# SKIP_ESLINT: 1
# SKIP_CSPELL: 1
# _CURL_TEMPLATES_REF: main
# Set to '1' to opt in testing against various additional Drupal core versions relative to the current stable version of Drupal.
OPT_IN_TEST_PREVIOUS_MINOR
:
1
OPT_IN_TEST_NEXT_MINOR
:
1
OPT_IN_TEST_PREVIOUS_MAJOR
:
0
OPT_IN_TEST_NEXT_MAJOR
:
0
# Set to 1 to opt in testing against the maximum/latest supported version of PHP for the current stable version of Drupal.
OPT_IN_TEST_MAX_PHP
:
1
Loading