Skip to content

Commit

Permalink
Move PHP 8.4 to the stable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Nov 22, 2024
1 parent 699431b commit 7c751b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .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.4', '8.5']
php-versions: ['8.5']
builds: ['debug', 'release']
ts: [zts, nts]
if: "!contains(github.event.head_commit.message, 'skip-nightly-cache')"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cache-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
php-versions:
description: 'PHP version to build'
default: '5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3'
default: '5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4'
required: false
builds:
description: 'Build type'
Expand All @@ -21,7 +21,7 @@ on:
required: false

env:
PHP_VERSIONS: '5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3'
PHP_VERSIONS: '5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4'
BUILDS: 'debug release'
TS: 'nts zts'
CONTAINERS: '24.04 22.04 20.04'
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" ] || [[ "$PHP_VERSION" =~ 8.[2-3] ]]; then
if [ ${NIGHTLY:?} = 'true' ] || [ ${TS:?} = 'zts' ] || [ "$VERSION_ID" = "24.04" ] || [[ "$PHP_VERSION" =~ 8.[2-4] ]]; then
echo php-builder;
else
echo 'packages';
Expand Down

0 comments on commit 7c751b2

Please sign in to comment.