Skip to content

Commit

Permalink
Add support for 10.5 and 11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrelan authored Nov 5, 2024
1 parent e8392e6 commit e52ef19
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
drupal_version: ['10.2', '10.3', '10.4', '11.0', '11.x']
drupal_version: ['10.3', '10.4', '10.5', '11.0', '11.1', '11.x']

steps:
- name: Create project
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Run tests
env:
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.0.0-dev' || matrix.drupal_version }}
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.0-dev' || matrix.drupal_version }}
run: |
cd drupal-contrib
bats tests
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,18 @@ switch:
$(GIT_SWITCH) 10.4.x
make clean

10.5: php8.3
$(GIT_SWITCH) 10.5.x
make clean

11.0: php8.3
$(GIT_SWITCH) 11.0.x
make clean

11.1: php8.3
$(GIT_SWITCH) 11.1.x
make clean

11.x: php8.3
$(GIT_SWITCH) 11.x
make clean
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Make commands should be executed on the host machine.
* `umami` - installs Drupal with the demo_umami profile
* `login` - gets a one-time login link
* `switch` - switches branch, e.g. `make BRANCH=9.3 switch`
* `10.2|10.3|10.4|11.0|11.x` - provides a clean environment with the specified Drupal version
* `10.2|10.3|10.4|10.5|11.0|11.1|11.x` - provides a clean environment with the specified Drupal version
* `php8.1|php8.2|php8.3` - starts the stack with the specified php version

## PhpStorm configuration
Expand Down

0 comments on commit e52ef19

Please sign in to comment.