88
88
# coverage: xdebug
89
89
- name : Execute PHPStan
90
90
run : |
91
- # Remove Acquia CMS modules.
92
- # @todo: Remove module from below which you want to make Drupal 11 compatible.
93
- composer remove "drupal/acquia_cms_headless" --no-install --no-update
94
- # Remove acquia_cms_headless module.
95
- rm -fr modules/acquia_cms_headless
96
- # Unset the repository path.
97
- composer config repositories.acquia_cms_headless --unset
98
91
rm composer.lock
99
92
composer install
100
93
./vendor/bin/phpstan analyze
@@ -166,13 +159,6 @@ jobs:
166
159
# aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
167
160
- name : Before Install
168
161
run : |
169
- # Remove Acquia CMS modules.
170
- # @todo: Remove module from below which you want to make Drupal 11 compatible.
171
- composer remove "drupal/acquia_cms_headless" --no-install --no-update
172
- # Remove acquia_cms_headless module.
173
- rm -fr modules/acquia_cms_headless
174
- # Unset the repository path.
175
- composer config repositories.acquia_cms_headless --unset
176
162
# Update the CI by adding patches without pinning the following modules.
177
163
#composer require "drupal/facets:^2.0.6" --no-update --no-install -d modules/acquia_cms_search
178
164
@@ -245,7 +231,7 @@ jobs:
245
231
- acquia_cms_common
246
232
- acquia_cms_document
247
233
- acquia_cms_event
248
- # - acquia_cms_headless
234
+ - acquia_cms_headless
249
235
- acquia_cms_image
250
236
- acquia_cms_page
251
237
- acquia_cms_person
@@ -271,13 +257,6 @@ jobs:
271
257
curl https://gist.githubusercontent.com/rajeshreeputra/170586f217b422eb9cdfd9ca9457a2e3/raw/c2f277ba9005b91d7f662cacf37b3940a66a9b8c/sut-path-reposories.patch | git -C ../orca apply
272
258
- name : Before Install
273
259
run : |
274
- # Remove Acquia CMS modules.
275
- # @todo: Remove module from below which you want to make Drupal 11 compatible.
276
- composer remove "drupal/acquia_cms_headless" --no-install --no-update
277
- # Remove acquia_cms_headless module.
278
- rm -fr modules/acquia_cms_headless
279
- # Unset the repository path.
280
- composer config repositories.acquia_cms_headless --unset
281
260
# Remove all ExistingSite test in CI.
282
261
find tests/src -type f -name "*Test.php" -path "*/ExistingSite*/*" -exec rm -fr '{}' ';'
283
262
# Remove all PHPUnit test files, excluding the current module's PHPUnit tests.
@@ -375,14 +354,6 @@ jobs:
375
354
aws-region : ${{ secrets.AWS_DEFAULT_REGION }}
376
355
- name : Before Install
377
356
run : |
378
- # Remove Acquia CMS modules.
379
- # @todo: Remove module from below which you want to make Drupal 11 compatible.
380
- composer remove "drupal/acquia_cms_headless" --no-install --no-update
381
- # Remove acquia_cms_headless module.
382
- rm -fr modules/acquia_cms_headless
383
- # Unset the repository path.
384
- composer config repositories.acquia_cms_headless --unset
385
-
386
357
# Remove all PHPunit tests from acquia_cms modules.
387
358
find modules/*/tests tests/src -type f -name "*Test.php" -exec rm -fr '{}' ';'
388
359
0 commit comments