Skip to content

Commit

Permalink
merge code
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingxyk committed Dec 23, 2024
2 parents aaa1b95 + 3e636d7 commit d31e56e
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 37 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/artifact-hash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
php-version:
required: true
description: "PHP 版本号 "
default: 'v8.1.30,v8.2.25,v8.3.13,v8.4.1'
default: 'v8.1.31,v8.2.27,v8.3.15,v8.4.2'
type: string
enable_upload_cloud_object_storage:
required: false
Expand All @@ -21,6 +21,7 @@ on:
jobs:
generate-artifact-hash:
runs-on: ubuntu-latest
if: 0
steps:
- uses: actions/checkout@v4
- name: Show Release File Hash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- "8.2.27"
- "8.1.31"
- "8.3.15"
- "8.4.2"
# - "8.4.2"
steps:
- uses: actions/checkout@v4
- name: Show Environment Info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- "8.2.27"
- "8.1.31"
- "8.3.15"
- "8.4.2"
# - "8.4.2"
steps:
- uses: actions/checkout@v4
- name: Show Environment Info
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/macos-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
- "8.2.27"
- "8.1.31"
- "8.3.15"
- "8.4.2"

# - "8.4.2"
steps:
- uses: actions/checkout@v4
- name: Show Environment Info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- "8.2.27"
- "8.1.31"
- "8.3.15"
- "8.4.2"
# - "8.4.2"
steps:
- uses: actions/checkout@v4
- name: Show Environment Info
Expand Down
2 changes: 1 addition & 1 deletion sapi/quickstart/windows/download-cygwin.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ cd /d %__PROJECT__%\var\windows-cygwin-build-deps\

curl.exe -fSLo setup-x86_64.exe https://cygwin.com/setup-x86_64.exe

copy .\setup-x86_64.exe %__PROJECT__%\ /Y /Q
copy .\setup-x86_64.exe %__PROJECT__%\

endlocal
3 changes: 0 additions & 3 deletions sapi/scripts/cygwin/cygwin-config-ext.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ while [ $# -gt 0 ]; do
--php-version)
PHP_VERSION="$2"
X_PHP_VERSION=$(echo ${PHP_VERSION:0:3})
if [ "$X_PHP_VERSION" = "8.4" ]; then
SWOOLE_VERSION='v6.0.0'
fi
;;
--swoole-version)
SWOOLE_VERSION="$2"
Expand Down
23 changes: 0 additions & 23 deletions sapi/scripts/cygwin/upload-oss.sh

This file was deleted.

8 changes: 4 additions & 4 deletions sapi/scripts/generate-artifact-hash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ RUN_DOWNLOAD() {

DOWNLOAD() {
declare -A PHP_VERSIONS
PHP_VERSIONS[0]="v8.2.25"
PHP_VERSIONS[1]="v8.1.30"
PHP_VERSIONS[2]="v8.3.13"
PHP_VERSIONS[3]="v8.4.1"
PHP_VERSIONS[0]="v8.2.27"
PHP_VERSIONS[1]="v8.1.31"
PHP_VERSIONS[2]="v8.3.15"
PHP_VERSIONS[3]="v8.4.2"
for i in "${!PHP_VERSIONS[@]}"; do
# echo ${PHP_VERSIONS[$i]}
RUN_DOWNLOAD "${PHP_VERSIONS[$i]}"
Expand Down

0 comments on commit d31e56e

Please sign in to comment.