Skip to content

Commit 2b1771f

Browse files
committed
Added support for Drupal 11.
1 parent 7859838 commit 2b1771f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ jobs:
110110
docker:
111111
- image: cimg/php:8.3-browsers
112112
environment:
113-
DRUPAL_VERSION: 10@beta
113+
DRUPAL_VERSION: 11@alpha
114+
DRUPAL_PROJECT_REPO: https://github.com/AlexSkrypnyk/drupal-project.git
114115
<<: *job-test
115116

116117
deploy:

.github/workflows/test.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,34 +20,31 @@ jobs:
2020
- name: test-php-8.2
2121
php-version: 8.2
2222
drupal-version: stable
23-
drupal-version-alias: stable
2423

2524
- name: test-php-8.2-legacy
2625
php-version: 8.2
2726
drupal-version: 10.1
2827
drupal-project-sha: 10.x
29-
drupal-version-alias: legacy
3028

3129
- name: test-php-8.2-next
3230
php-version: 8.2
3331
drupal-version: 10@beta
34-
drupal-version-alias: next
3532

3633
- name: test-php-8.3
3734
php-version: 8.3
3835
drupal-version: stable
39-
drupal-version-alias: stable
4036

4137
- name: test-php-8.3-next
4238
php-version: 8.3
43-
drupal-version: 10@beta
44-
drupal-version-alias: next
39+
drupal-version: 11@alpha
40+
drupal-project-repo: https://github.com/AlexSkrypnyk/drupal-project.git
4541

4642
name: ${{ matrix.name }}
4743

4844
env:
4945
DRUPAL_VERSION: ${{ matrix.drupal-version }}
5046
DRUPAL_PROJECT_SHA: ${{ matrix.drupal-project-sha }}
47+
DRUPAL_PROJECT_REPO: ${{ matrix.drupal-project-repo }}
5148

5249
steps:
5350
- name: Checkout code

your_extension.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Drupal extension scaffold
22
type: module
33
description: Drupal extension scaffold example.
44
package: Testing
5-
core_version_requirement: ^10
5+
core_version_requirement: ^10 || ^11
66

77
dependencies:
88
- drupal:config

0 commit comments

Comments
 (0)