Skip to content

Commit

Permalink
Add PHP 8.3 to drone (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
heelc29 authored Jul 17, 2024
1 parent 34dd01c commit 03ad84c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
};

Expand Down Expand Up @@ -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"),
]
20 changes: 20 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,26 @@ 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: c9820ee9949d145df5c2e47d5941d1649f380abd0ac1e5261370115fbf12729b

Expand Down

0 comments on commit 03ad84c

Please sign in to comment.