Skip to content

Commit

Permalink
Updated PHP and Drupal versions.
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Skrypnyk <[email protected]>
  • Loading branch information
AlexSkrypnyk committed Jul 15, 2023
1 parent 28f0f54 commit 531012a
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ aliases:
- &container_config
working_directory: ~/project
docker:
- image: cimg/php:8.1-browsers
- image: cimg/php:8.2-browsers

job-build: &job-build
steps:
Expand All @@ -24,43 +24,42 @@ job-build: &job-build
path: /tmp/artifacts

jobs:
build-php-8.0:
build-php-8.1:
<<: *container_config
docker:
- image: cimg/php:8.0-browsers
- image: cimg/php:8.1-browsers
<<: *job-build

build-php-8.1:
build-php-8.2:
<<: *container_config
docker:
- image: cimg/php:8.1-browsers
- image: cimg/php:8.2-browsers
<<: *job-build

build-php-8.0-legacy:
build-php-8.1-legacy:
<<: *container_config
docker:
- image: cimg/php:8.0-browsers
- image: cimg/php:8.1-browsers
environment:
DRUPAL_VERSION: 9.3.22
DRUPAL_VERSION: 9.5
DRUPAL_PROJECT_SHA: 9.x
<<: *job-build

build-php-8.1-legacy:
build-php-8.2-legacy:
<<: *container_config
docker:
- image: cimg/php:8.1-browsers
- image: cimg/php:8.2-browsers
environment:
DRUPAL_VERSION: 9.3.22
DRUPAL_VERSION: 9.5
DRUPAL_PROJECT_SHA: 9.x
<<: *job-build

build-php-8.1-next:
build-php-8.2-next:
<<: *container_config
docker:
- image: cimg/php:8.1-browsers
- image: cimg/php:8.2-browsers
environment:
DRUPAL_VERSION: 10@beta2
DRUPAL_PROJECT_SHA: 10.x
DRUPAL_VERSION: 10@beta
<<: *job-build

deploy:
Expand All @@ -78,33 +77,33 @@ workflows:
version: 2
main:
jobs:
- build-php-8.0:
- build-php-8.1:
filters:
tags:
only: /.*/
- build-php-8.1:
- build-php-8.2:
filters:
tags:
only: /.*/
- build-php-8.0-legacy:
- build-php-8.1-legacy:
filters:
tags:
only: /.*/
- build-php-8.1-legacy:
- build-php-8.2-legacy:
filters:
tags:
only: /.*/
- build-php-8.1-next:
- build-php-8.2-next:
filters:
tags:
only: /.*/
- deploy:
requires:
- build-php-8.0
- build-php-8.1
- build-php-8.0-legacy
- build-php-8.2
- build-php-8.1-legacy
- build-php-8.1-next
- build-php-8.2-legacy
- build-php-8.2-next
filters:
tags:
only: /.*/
Expand Down

0 comments on commit 531012a

Please sign in to comment.