Skip to content

Commit 60ab491

Browse files
authored
Merge pull request #16719 from phalcon/5.0.x
5.9.0 Release
2 parents 83677f1 + f935964 commit 60ab491

File tree

289 files changed

+164781
-162900
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+164781
-162900
lines changed

.github/workflows/build-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [ '8.0', '8.1', '8.2', '8.3' ]
18+
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
1919

2020
name: Build Dockerfile PHP ${{ matrix.php }}
2121
steps:

.github/workflows/main.yml

+16-23
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.8.0
22+
PHALCON_VERSION: 5.9.0
2323
ZEPHIR_PARSER_VERSION: 1.6.1
2424

2525
# For tests
@@ -86,24 +86,26 @@ jobs:
8686
strategy:
8787
fail-fast: false
8888
matrix:
89-
php: [ '8.0', '8.1', '8.2', '8.3' ]
89+
php: [ '8.1', '8.2', '8.3', '8.4' ]
9090
ts: [ 'nts', 'ts' ]
9191
arch: [ 'x64' ]
9292

9393
name:
9494
- ubuntu-gcc
95-
- macos-clang
95+
96+
# Removing temporarily macos builds since it fails due to the container setup
97+
# - macos-clang
9698

9799
# matrix names should be in next format:
98100
# {php}-{ts}-{os.name}-{compiler}-{arch}
99101
include:
100102
# Linux
101-
- { name: ubuntu-gcc, os: ubuntu-20.04, compiler: gcc }
102-
# macOS
103-
- { name: macos-clang, os: macos-12, compiler: clang }
103+
- { name: ubuntu-gcc, os: ubuntu-22.04, compiler: gcc }
104+
# # macOS
105+
# - { name: macos-clang, os: macos-latest, compiler: clang }
104106
# Windows
105-
- { php: '8.0', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
106-
- { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
107+
# - { php: '8.0', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
108+
# - { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
107109
#- { php: '8.1', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
108110
#- { php: '8.1', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
109111
# Most of the extensions wasn't compiled for PHP 8.2.
@@ -190,9 +192,9 @@ jobs:
190192
run: composer validate --no-check-all --no-check-publish
191193

192194
- name: "Install development dependencies with Composer"
193-
uses: "ramsey/composer-install@v2"
195+
uses: "ramsey/composer-install@v3"
194196
with:
195-
composer-options: "--prefer-dist"
197+
composer-options: "--prefer-dist --ignore-platform-reqs"
196198

197199
- name: Setup Tests
198200
shell: bash
@@ -268,7 +270,7 @@ jobs:
268270
strategy:
269271
fail-fast: false
270272
matrix:
271-
php: [ '8.0', '8.1', '8.2', '8.3' ]
273+
php: [ '8.1', '8.2', '8.3', '8.4' ]
272274

273275
steps:
274276
- uses: actions/checkout@v4
@@ -305,9 +307,9 @@ jobs:
305307
run: composer validate --no-check-all --no-check-publish
306308

307309
- name: "Install development dependencies with Composer"
308-
uses: ramsey/composer-install@v2
310+
uses: ramsey/composer-install@v3
309311
with:
310-
composer-options: "--prefer-dist"
312+
composer-options: "--prefer-dist --ignore-platform-reqs"
311313

312314
- name: Setup Tests
313315
run: |
@@ -364,12 +366,6 @@ jobs:
364366
if: always()
365367
run: vendor/bin/codecept run --coverage-xml=coverage-${{ matrix.php }}.xml --ext DotReporter database --env pgsql -g pgsql
366368

367-
# - name: Run Database Tests (SQL Server)
368-
# env:
369-
# DATA_REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
370-
# DATA_MEMCACHED_PORT: ${{ job.services.memcached.ports['11211'] }}
371-
# run: vendor/bin/codecept run --ext DotReporter database --env sqlsrv
372-
373369
release:
374370
permissions:
375371
contents: write # to create a release (ncipollo/release-action)
@@ -385,10 +381,7 @@ jobs:
385381

386382
- name: Get the release version
387383
id: get-version
388-
run: |
389-
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
390-
# echo ::set-output name=version::${GITHUB_REF#refs/tags/}
391-
# echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV" # This needs to be checked
384+
run: echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
392385

393386
- name: Download Phalcon build artifacts
394387
id: download

0 commit comments

Comments
 (0)