Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
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
drupal
Merge requests
!8598
Draft: Issue
#3458215
: Migrate Toolbar button to SDC
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Issue
#3458215
: Migrate Toolbar button to SDC
3458215-migrate-toolbar-button
into
11.x
Overview
0
Commits
184
Pipelines
2
Changes
1000+
Closed
Cristina Chumillas
requested to merge
3458215-migrate-toolbar-button
into
11.x
1 year ago
Overview
0
Commits
184
Pipelines
2
Changes
1000
Expand
(cherry picked from commit
6eb4902d
)
Closes
#3458215
0
0
Merge request reports
Compare
11.x
11.x (base)
and
latest version
latest version
dc004f2c
184 commits,
1 year ago
1000+ files
+
9381
−
3851
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
1000+
Search (e.g. *.vue) (Ctrl+P)
Some changes are not shown.
For a faster browsing experience, only
1000 of 1000+
files are shown. Download one of the files below to see all changes.
Plain diff
Patches
.gitlab-ci/scripts/test-only.sh
+
5
−
1
Options
@@ -21,8 +21,12 @@
fi
echo
"2️⃣ Running test changes for this branch"
EXIT_CODE
=
0
if
[[
$(
git diff
${
BASELINE
}
--name-only
|grep
-E
"Test.php$"
)
]]
;
then
for
test
in
`
git diff
${
BASELINE
}
--name-only
|grep
-E
"Test.php$"
`
;
do
sudo
SIMPLETEST_BASE_URL
=
"
$SIMPLETEST_BASE_URL
"
SIMPLETEST_DB
=
"
$SIMPLETEST_DB
"
MINK_DRIVER_ARGS_WEBDRIVER
=
"
$MINK_DRIVER_ARGS_WEBDRIVER
"
-u
www-data ./vendor/bin/phpunit
-c
core
$test
--log-junit
=
./sites/default/files/simpletest/phpunit-
`
echo
$test
|sed
's/\//_/g'
`
.xml
;
sudo
SIMPLETEST_BASE_URL
=
"
$SIMPLETEST_BASE_URL
"
SIMPLETEST_DB
=
"
$SIMPLETEST_DB
"
MINK_DRIVER_ARGS_WEBDRIVER
=
"
$MINK_DRIVER_ARGS_WEBDRIVER
"
-u
www-data ./vendor/bin/phpunit
-c
core
$test
--log-junit
=
./sites/default/files/simpletest/phpunit-
`
echo
$test
|sed
's/\//_/g'
`
.xml
||
EXIT_CODE
=
$?
;
done
;
fi
echo
"Exiting with EXIT_CODE=
$EXIT_CODE
"
exit
$EXIT_CODE
Loading