Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ jobs:
with:
files: |
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-linux-arm64.tar.xz
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-linux-arm64-debug.tar.xz

- name: upload artifacts to cloud object storage
if: ${{ 0 && (github.repository == 'swoole/swoole-cli') && (startsWith(github.ref, 'refs/tags/')) }}
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ on:
default: '--with-php-version=8.2.28'
type: choice
options:
- '--with-php-version=8.1.32'
- '--with-php-version=8.2.28'
- '--with-php-version=8.3.19'
- '--with-php-version=8.4.5'
- '--with-php-version=8.1.34'
- '--with-php-version=8.2.30'
- '--with-php-version=8.3.29'
- '--with-php-version=8.4.16'
build_type:
required: true
description: "定制构建选项: 指定构建类型"
Expand Down Expand Up @@ -254,7 +254,6 @@ jobs:
with:
files: |
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-linux-x64.tar.xz
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-linux-x64-debug.tar.xz

- name: upload artifacts to cloud object storage
if: ${{ 0 && (github.repository == 'swoole/swoole-cli') && (startsWith(github.ref, 'refs/tags/')) }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/macos-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ jobs:
with:
files: |
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-macos-arm64.tar.xz
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-macos-arm64-debug.tar.xz

- name: upload artifacts to cloud object storage
if: ${{ 0 && (github.repository == 'swoole/swoole-cli') && (startsWith(github.ref, 'refs/tags/')) }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ jobs:
with:
files: |
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-macos-x64.tar.xz
${{ env.APP_NAME }}-v${{ env.APP_VERSION }}-macos-x64-debug.tar.xz

- name: upload artifacts to cloud object storage
if: ${{ 0 && (github.repository == 'swoole/swoole-cli') && (startsWith(github.ref, 'refs/tags/')) }}
Expand Down
2 changes: 1 addition & 1 deletion sapi/SWOOLE-VERSION.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v6.1.5
v6.1.6
2 changes: 1 addition & 1 deletion sapi/scripts/cygwin/cygwin-config-ext.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ MONGODB_VERSION=1.14.2
YAML_VERSION=2.2.2
IMAGICK_VERSION=3.8.0
if [ "${X_PHP_VERSION}" == "8.1" ]; then
SWOOLE_VERSION="v6.1.4"
SWOOLE_VERSION="v6.1.6"
fi
mkdir -p pool/ext
mkdir -p pool/lib
Expand Down
2 changes: 1 addition & 1 deletion sapi/src/builder/extension/swoole.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// $swoole_tag = 'v6.0.1';
if (BUILD_CUSTOM_PHP_VERSION_ID == '8010') {
$swoole_tag = 'v6.1.4';
$swoole_tag = 'v6.1.6';
}

$file = "swoole-{$swoole_tag}.tar.gz";
Expand Down
Loading