Skip to content

Commit 8b1a0b7

Browse files
authored
Merge pull request #606 from ulue/dev2
2 parents 33b3a4e + 2a5774d commit 8b1a0b7

File tree

183 files changed

+4391
-709
lines changed

Some content is hidden

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

183 files changed

+4391
-709
lines changed

.github/workflows/php.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,22 @@ jobs:
2424
ports:
2525
- 3306
2626
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
27+
# https://docs.github.com/en/actions/guides/creating-redis-service-containers
2728
redis:
2829
image: redis
2930
ports:
30-
- 6379/tcp
31+
- 16379:6379 # export 16379 the port
3132
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
3233
strategy:
3334
fail-fast: true # fast fail
3435
matrix:
35-
php: [7.2, 7.3, 7.4]
36+
php: [7.2, 7.3, 7.4, 8.0]
3637
os: [ubuntu-latest] # , macOS-latest, windows-latest
3738
swoole-versions: [''] # latest
3839
include:
3940
- os: 'ubuntu-latest'
4041
php: '7.1'
41-
swoole-versions: '-4.5.10'
42+
swoole-versions: '-4.5.11'
4243

4344
steps:
4445
- uses: actions/checkout@v2
@@ -54,7 +55,7 @@ jobs:
5455

5556
- name: Display swoole extensions
5657
timeout-minutes: 1
57-
run: php --ri swoole && php --re swoole | grep class
58+
run: php --ri swoole
5859
# sudo pecl install -f swoole
5960
# echo 'no' | pecl install -f redis
6061
# sudo pecl update-channels && pecl install -f msgpack && pecl install -f igbinary && php -m
@@ -67,4 +68,4 @@ jobs:
6768

6869
- name: Run test suite
6970
run: | # && composer run test
70-
pwd && ./phpunit.sh nodb
71+
pwd && ./phpunit.sh nodb && ./phpunit.sh redis

.github/workflows/release.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Tag-release
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
release:
10+
name: Test on php ${{ matrix.php}}
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
strategy:
14+
fail-fast: true
15+
matrix:
16+
php: [7.3]
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
22+
- name: Set ENV for github-release
23+
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
24+
run: |
25+
echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
26+
echo "RELEASE_NAME=$GITHUB_WORKFLOW" >> $GITHUB_ENV
27+
28+
# usage refer https://github.com/shivammathur/setup-php
29+
- name: Setup PHP
30+
timeout-minutes: 5
31+
uses: shivammathur/setup-php@v2
32+
with:
33+
php-version: ${{ matrix.php}}
34+
tools: pecl, php-cs-fixer, phpunit
35+
extensions: mbstring, dom, fileinfo, mysql, openssl # , swoole-4.4.19 #optional, setup extensions
36+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
37+
coverage: none #optional, setup coverage driver: xdebug, none
38+
39+
- name: Install dependencies # eg: v1.0.3
40+
run: |
41+
tag1=${GITHUB_REF#refs/*/}
42+
echo "release tag: ${tag1}"
43+
composer install --no-progress --no-suggest
44+
45+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
46+
# Docs: https://getcomposer.org/doc/articles/scripts.md
47+
48+
# - name: Build phar and send to github assets
49+
# run: |
50+
# echo $RELEASE_TAG
51+
# echo $RELEASE_NAME
52+
# php -d phar.readonly=0 bin/kite phar:pack -o kite-${RELEASE_TAG}.phar --no-progress
53+
# php kite-${RELEASE_TAG}.phar -V
54+
55+
# https://github.com/actions/create-release
56+
- uses: meeDamian/[email protected]
57+
with:
58+
gzip: false
59+
token: ${{ secrets.GITHUB_TOKEN }}
60+
tag: ${{ env.RELEASE_TAG }}
61+
name: ${{ env.RELEASE_TAG }}
62+
# files: kite-${{ env.RELEASE_TAG }}.phar

.php_cs .php-cs-fixer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'void_return' => true, // add :void for method
3535
];
3636

37-
return PhpCsFixer\Config::create()
37+
return (new PhpCsFixer\Config())
3838
->setRiskyAllowed(true)
3939
->setRules($rules)
4040
->setFinder(

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ classdoc:
4949
# gen docs
5050
php sami.phar update ./script/sami.doc.inc
5151

52+
test-all: ## Run all unit tests
53+
test-all:
54+
./phpunit.sh all
55+
56+
test-nodb: ## Run unit tests without db tests
57+
test-nodb:
58+
./phpunit.sh nodb
59+
5260
all: ## Run update, addrmt, fpush and release
5361
all: update addrmt fpush release
5462

README.zh-CN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export RUN_SERVER_TEST=ws,http,tcp; ./phpunit.sh websocket-server
9292
### 自动发布
9393

9494
使用 Github PR 评论发布组件新版本。
95+
[swoft/swoft-component][component][swoft/swoft-ext][ext] 下的PR评论即发布相应仓库的代码
9596

9697
评论格式:
9798

@@ -105,10 +106,10 @@ export RUN_SERVER_TEST=ws,http,tcp; ./phpunit.sh websocket-server
105106

106107
```text
107108
# 所有的组件
108-
@swoftbot release v2.0.8 all
109+
@swoftbot release v2.0.11 all
109110
110111
# 指定的组件
111-
@swoftbot release v2.0.8 bean,event
112+
@swoftbot release v2.0.11 bean,event
112113
```
113114

114115
### 手动发布

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"nikic/php-parser": "~4.2"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "^7.5",
31+
"phpunit/phpunit": "^7.5 || ^8.0",
3232
"swoft/swoole-ide-helper": "dev-master"
3333
},
3434
"replace": {
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#
2+
# Github actions for swoft component tests
3+
# https://github.com/marketplace?type=actions
4+
#
5+
name: Unit-tests
6+
7+
on: [push, pull_request]
8+
9+
# usage refer https://github.com/shivammathur/setup-php
10+
jobs:
11+
test:
12+
name: Test on php ${{ matrix.php}} and ${{ matrix.os }} OS
13+
runs-on: ${{ matrix.os }}
14+
timeout-minutes: 20
15+
env:
16+
SWOFT_DEBUG: 0
17+
strategy:
18+
fail-fast: true # fast fail
19+
matrix:
20+
php: [7.2, 7.3, 7.4, 8.0]
21+
os: [ubuntu-latest] # , macOS-latest, windows-latest
22+
swoole-versions: [''] # latest
23+
include:
24+
- os: 'ubuntu-latest'
25+
php: '7.1'
26+
swoole-versions: '-4.5.11'
27+
28+
steps:
29+
- uses: actions/checkout@v2
30+
# usage refer https://github.com/shivammathur/setup-php
31+
- name: Setup PHP
32+
timeout-minutes: 5
33+
uses: shivammathur/setup-php@v2
34+
with:
35+
php-version: ${{ matrix.php}}
36+
extensions: mbstring, dom, fileinfo, mysql, openssl, redis, swoole${{ matrix.swoole-versions }} #optional, setup extensions
37+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
38+
coverage: none #optional, setup coverage driver: xdebug, none
39+
40+
- name: Display swoole extensions
41+
timeout-minutes: 1
42+
run: php --ri swoole
43+
# sudo pecl install -f swoole
44+
# echo 'no' | pecl install -f redis
45+
# sudo pecl update-channels && pecl install -f msgpack && pecl install -f igbinary && php -m
46+
47+
- name: Install dependencies
48+
run: composer install --no-progress --no-suggest
49+
50+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
51+
# Docs: https://getcomposer.org/doc/articles/scripts.md
52+
53+
- name: Run test suite
54+
run: composer run test
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Tag-release
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
release:
10+
name: Test on php ${{ matrix.php}}
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
strategy:
14+
fail-fast: true
15+
matrix:
16+
php: [7.3]
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
22+
- name: Set ENV for github-release
23+
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
24+
run: |
25+
echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
26+
echo "RELEASE_NAME=$GITHUB_WORKFLOW" >> $GITHUB_ENV
27+
28+
# usage refer https://github.com/shivammathur/setup-php
29+
- name: Setup PHP
30+
timeout-minutes: 5
31+
uses: shivammathur/setup-php@v2
32+
with:
33+
php-version: ${{ matrix.php}}
34+
tools: pecl, php-cs-fixer, phpunit
35+
extensions: mbstring, dom, fileinfo, mysql, openssl # , swoole-4.4.19 #optional, setup extensions
36+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
37+
coverage: none #optional, setup coverage driver: xdebug, none
38+
39+
- name: Install dependencies # eg: v1.0.3
40+
run: |
41+
tag1=${GITHUB_REF#refs/*/}
42+
echo "release tag: ${tag1}"
43+
composer install --no-progress --no-suggest
44+
45+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
46+
# Docs: https://getcomposer.org/doc/articles/scripts.md
47+
48+
# - name: Build phar and send to github assets
49+
# run: |
50+
# echo $RELEASE_TAG
51+
# echo $RELEASE_NAME
52+
# php -d phar.readonly=0 bin/kite phar:pack -o kite-${RELEASE_TAG}.phar --no-progress
53+
# php kite-${RELEASE_TAG}.phar -V
54+
55+
# https://github.com/actions/create-release
56+
- uses: meeDamian/[email protected]
57+
with:
58+
gzip: false
59+
token: ${{ secrets.GITHUB_TOKEN }}
60+
tag: ${{ env.RELEASE_TAG }}
61+
name: ${{ env.RELEASE_TAG }}
62+
# files: kite-${{ env.RELEASE_TAG }}.phar

src/annotation/composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "swoft/annotation",
33
"type": "library",
4-
"version": "v2.0.10",
4+
"version": "v2.0.11",
55
"keywords": [
66
"php",
77
"swoole",
@@ -23,7 +23,7 @@
2323
}
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^7.5"
26+
"phpunit/phpunit": "^7.5 || ^8.0"
2727
},
2828
"autoload-dev": {
2929
"psr-4": {

src/aop/.github/workflows/php.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#
2+
# Github actions for swoft component tests
3+
# https://github.com/marketplace?type=actions
4+
#
5+
name: Unit-tests
6+
7+
on: [push, pull_request]
8+
9+
# usage refer https://github.com/shivammathur/setup-php
10+
jobs:
11+
test:
12+
name: Test on php ${{ matrix.php}} and ${{ matrix.os }} OS
13+
runs-on: ${{ matrix.os }}
14+
timeout-minutes: 20
15+
env:
16+
SWOFT_DEBUG: 0
17+
strategy:
18+
fail-fast: true # fast fail
19+
matrix:
20+
php: [7.2, 7.3, 7.4, 8.0]
21+
os: [ubuntu-latest] # , macOS-latest, windows-latest
22+
swoole-versions: [''] # latest
23+
include:
24+
- os: 'ubuntu-latest'
25+
php: '7.1'
26+
swoole-versions: '-4.5.11'
27+
28+
steps:
29+
- uses: actions/checkout@v2
30+
# usage refer https://github.com/shivammathur/setup-php
31+
- name: Setup PHP
32+
timeout-minutes: 5
33+
uses: shivammathur/setup-php@v2
34+
with:
35+
php-version: ${{ matrix.php}}
36+
extensions: mbstring, dom, fileinfo, mysql, openssl, redis, swoole${{ matrix.swoole-versions }} #optional, setup extensions
37+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
38+
coverage: none #optional, setup coverage driver: xdebug, none
39+
40+
- name: Display swoole extensions
41+
timeout-minutes: 1
42+
run: php --ri swoole
43+
# sudo pecl install -f swoole
44+
# echo 'no' | pecl install -f redis
45+
# sudo pecl update-channels && pecl install -f msgpack && pecl install -f igbinary && php -m
46+
47+
- name: Install dependencies
48+
run: composer install --no-progress --no-suggest
49+
50+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
51+
# Docs: https://getcomposer.org/doc/articles/scripts.md
52+
53+
- name: Run test suite
54+
run: composer run test

0 commit comments

Comments
 (0)