Skip to content

Commit

Permalink
Use php-builder for PHP 8.2 and PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Jun 6, 2024
1 parent ba745e9 commit e3669b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cache-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
container: [24.04, 22.04, 20.04]
php-versions: ['8.3', '8.4']
php-versions: ['8.4']
builds: ['debug', 'release']
ts: [zts, nts]
if: "!contains(github.event.head_commit.message, 'skip-nightly-cache')"
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
php-versions: ['8.3', '8.4']
php-versions: ['8.4']
builds: ['debug', 'release']
ts: [nts, zts]
if: "!contains(github.event.head_commit.message, 'skip-tests')"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
container: [24.04, 22.04, 20.04]
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
builds: ['debug', 'release']
ts: [nts, zts]
if: "!contains(github.event.head_commit.message, 'skip-cache')"
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
builds: ['debug', 'release']
ts: [nts, zts]
if: "!contains(github.event.head_commit.message, 'skip-tests')"
Expand Down
2 changes: 1 addition & 1 deletion scripts/get-source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

. /etc/os-release

if [ ${NIGHTLY:?} = 'true' ] || [ ${TS:?} = 'zts' ] || [ "$VERSION_ID" = "24.04" ]; then
if [ ${NIGHTLY:?} = 'true' ] || [ ${TS:?} = 'zts' ] || [ "$VERSION_ID" = "24.04" ] || [[ "$PHP_VERSION" =~ 8.[2-3] ]]; then
echo php-builder;
else
echo 'packages';
Expand Down

0 comments on commit e3669b9

Please sign in to comment.