diff --git a/.drone.jsonnet b/.drone.jsonnet index e13974c7..3e25ef82 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -25,7 +25,7 @@ local composer(phpversion, params) = { local phpunit(phpversion) = { name: "PHPUnit", image: "joomlaprojects/docker-images:php" + phpversion, - [if phpversion == "8.3" then "failure"]: "ignore", + [if phpversion == "8.4" then "failure"]: "ignore", commands: ["vendor/bin/phpunit"] }; @@ -103,4 +103,5 @@ local pipeline(name, phpversion, params) = { pipeline("8.1 lowest", "8.1", "--prefer-stable --prefer-lowest"), pipeline("8.1", "8.1", "--prefer-stable"), pipeline("8.2", "8.2", "--prefer-stable"), + pipeline("8.3", "8.3", "--prefer-stable"), ] diff --git a/.drone.yml b/.drone.yml index a2253318..ba9fd6c7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -109,7 +109,27 @@ volumes: path: /tmp/composer-cache name: composer-cache --- +kind: pipeline +name: PHP 8.3 +steps: +- commands: + - php -v + - composer update --prefer-stable + image: joomlaprojects/docker-images:php8.3 + name: composer + volumes: + - name: composer-cache + path: /tmp/composer-cache +- commands: + - vendor/bin/phpunit + image: joomlaprojects/docker-images:php8.3 + name: PHPUnit +volumes: +- host: + path: /tmp/composer-cache + name: composer-cache +--- kind: signature -hmac: 359f132c744f714b1f25b942977ed4e7b71d08b578b028134469f9d7546c5a88 +hmac: TODO ...