Skip to content

Commit 37f5eb8

Browse files
authored
Merge pull request #16457 from phalcon/5.0.x
5.4.0 Release
2 parents 485ad1a + 2194aa0 commit 37f5eb8

File tree

345 files changed

+161475
-164145
lines changed

Some content is hidden

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

345 files changed

+161475
-164145
lines changed

.github/actions/build-phalcon-mac/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ runs:
1111
steps:
1212
- name: Configure macOS Environment
1313
shell: bash
14-
# Xcode paths: https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md#xcode
14+
# Xcode paths: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode
1515
run: |
16-
sudo xcode-select -s /Applications/Xcode_13.0.app
16+
sudo xcode-select -s /Applications/Xcode_14.2.app
1717
xcodebuild -version
1818
1919
- name: 'Build Phalcon for macOS'

.github/actions/build-phalcon-win/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
using: 'composite'
2626
steps:
2727
- name: Setup Downloads Cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: ${{ env.CACHE_DIR }}
3131
key: ${{ runner.os }}-downloads-${{ hashFiles('**/.github/actions/build-phalcon-win/action.yml') }}

.github/workflows/main.yml

+7-3
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.3.1
22+
PHALCON_VERSION: 5.4.0
2323
ZEPHIR_PARSER_VERSION: 1.5.3
2424
ZEPHIR_VERSION: 0.17.0
2525

@@ -50,6 +50,8 @@ jobs:
5050
name: Setup Zephir Extensions
5151
run: |
5252
echo "::set-output name=extensions::zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}"
53+
# echo "extensions=zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" >> "$GITHUB_ENV" # Need to change the templates to use this
54+
5355

5456
# PHP CodeSniffer inspection
5557
phpcs:
@@ -100,7 +102,7 @@ jobs:
100102
# Linux
101103
- { name: ubuntu-gcc, os: ubuntu-20.04, compiler: gcc }
102104
# macOS
103-
- { name: macos-clang, os: macos-11, compiler: clang }
105+
- { name: macos-clang, os: macos-12, compiler: clang }
104106
# Windows
105107
- { php: '7.4', ts: 'ts', arch: 'x64', name: 'windows2019-vc15', os: 'windows-2019', compiler: 'vc15' }
106108
- { php: '7.4', ts: 'nts', arch: 'x64', name: 'windows2019-vc15', os: 'windows-2019', compiler: 'vc15' }
@@ -137,7 +139,7 @@ jobs:
137139
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
138140

139141
- name: Download Phalcon Pecl Package
140-
uses: actions/download-artifact@v2
142+
uses: actions/download-artifact@v3
141143
with:
142144
name: phalcon-pecl
143145
path: ./phalcon-pecl
@@ -180,6 +182,7 @@ jobs:
180182
$PhalconExtPath = "$(php-config --extension-dir)/phalcon.so"
181183
}
182184
echo "::set-output name=extension-path::$PhalconExtPath"
185+
# echo "extension-path=$PhalconExtPath" >> "$GITHUB_ENV" # This needs to be checked, used below somehow
183186

184187
- name: Creates build artifact with Phalcon extension
185188
uses: ./.github/actions/pack-phalcon-ext
@@ -388,6 +391,7 @@ jobs:
388391
id: get-version
389392
run: |
390393
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
394+
# echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV" # This needs to be checked
391395

392396
- name: Download Phalcon build artifacts
393397
id: download

0 commit comments

Comments
 (0)