Skip to content

Commit

Permalink
Merge pull request #155 from exonet/tsi/update-powerdns
Browse files Browse the repository at this point in the history
Update PowerDNS versions for tests
  • Loading branch information
robbinjanssen authored Oct 1, 2024
2 parents 8590b07 + 0005951 commit 96db3cf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
powerdns-versions: ["42", "43", "44", "45", "46", "47"]
powerdns-versions: ["42", "43", "44", "45", "46", "47", "48", "49"]
php-versions: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]

services:
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,15 @@ services:
image: registry.exonet.nl/exonet/powerdns-test:47
ports:
- "8047:8081"

powerdns48:
container_name: pdns48
image: registry.exonet.nl/exonet/powerdns-test:48
ports:
- "8048:8081"

powerdns49:
container_name: pdns49
image: registry.exonet.nl/exonet/powerdns-test:49
ports:
- "8049:8081"
4 changes: 2 additions & 2 deletions run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ if [ "$#" -eq 2 ]; then
else
# Run tests for all supported PHP 7 / PowerDNS 4 combinations.
for phpversion in {3..4}; do
for pdnsversion in {2..7}; do
for pdnsversion in {2..9}; do
run "7.$phpversion" "4.$pdnsversion"
done
RESULTS="$RESULTS\n"
done
# Run tests for all supported PHP 8 / PowerDNS 4 combinations.
for phpversion in {0..3}; do
for pdnsversion in {2..7}; do
for pdnsversion in {2..9}; do
run "8.$phpversion" "4.$pdnsversion"
done
RESULTS="$RESULTS\n"
Expand Down

0 comments on commit 96db3cf

Please sign in to comment.