forked from hyperf/hyperf
-
Notifications
You must be signed in to change notification settings - Fork 0
210 lines (209 loc) · 6.85 KB
/
test-components.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
name: Test for Hyperf Components
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
env:
SW_VERSION: 'v4.8.10'
jobs:
database:
name: Test for Database
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: ${{ matrix.php-version }}
strategy:
matrix:
php-version: [ '7.4', '8.0' ]
mysql-version: [ '5.7', '8.0' ]
max-parallel: 2
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpize
extensions: redis, pdo, pdo_mysql, bcmath
ini-values: opcache.enable_cli=1
coverage: none
- name: Setup Swoole
run: ./.travis/swoole.install.sh
- name: Setup Packages
run: composer update -o
- name: Setup Services
run: |
docker run --name mysql -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=true -d mysql:${{ matrix.mysql-version }} --bind-address=0.0.0.0 --default-authentication-plugin=mysql_native_password
sleep 20
- name: Setup Mysql
run: export TRAVIS_BUILD_DIR=$(pwd) && bash ./.travis/setup.mysql.sh
- name: Run Test Cases
run: |
composer test src/database -- --exclude-group NonCoroutine
vendor/bin/phpunit src/database --group NonCoroutine
filesystem:
name: Test for Filesystem
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: ${{ matrix.php-version }}
strategy:
matrix:
version: [ '^1.0', '^2.0' ]
php-version: [ '8.0' ]
max-parallel: 2
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpize
ini-values: opcache.enable_cli=1
- name: Setup Swoole
run: ./.travis/swoole.install.sh
- name: Setup Packages
run: composer require "league/flysystem:${{ matrix.version }}" --dev -o -W
- name: Setup Flysystem(v1.0) Adapters
if: ${{ matrix.version == '^1.0' }}
run: |
composer require xxtime/flysystem-aliyun-oss
composer require "overtrue/flysystem-cos:^3.0"
composer require "overtrue/flysystem-qiniu:^1.0"
- name: Setup Flysystem(v2.0) Adapters
if: ${{ matrix.version == '^2.0' }}
run: |
composer require hyperf/flysystem-oss
composer require "league/flysystem-ftp:^3.0"
composer require "overtrue/flysystem-cos:^4.0"
composer require "overtrue/flysystem-qiniu:^2.0"
- name: Run Test Cases
run: |
composer test src/filesystem -- --exclude-group NonCoroutine
phar:
name: Test for Building PHAR ${{ matrix.no-dev }}
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: ${{ matrix.php-version }}
strategy:
matrix:
no-dev: [ '', '--no-dev' ]
php-version: [ '8.0' ]
max-parallel: 2
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpize
extensions: redis
ini-values: opcache.enable_cli=1, phar.readonly='Off'
coverage: none
- name: Setup Swoole
run: ./.travis/swoole.install.sh
- name: Build phar tester
run: |
git clone https://github.com/limingxinleo/hyperf-phar-tester.git
cd hyperf-phar-tester
git checkout 2.2
composer update -o ${{ matrix.no-dev }}
rm -rf vendor/hyperf/phar
cp -rf ../src/phar vendor/hyperf/phar
composer dump-autoload -o
- name: Test
run: |
cd hyperf-phar-tester
php bin/hyperf.php phar:build --name no_env.phar
php bin/hyperf.php read:vendor-bin
php no_env.phar show:name -N null
php no_env.phar read:vendor-bin
cp .env.example .env
php bin/hyperf.php phar:build --name default_env.phar
php default_env.phar show:name -N hyperf-phar-tester
php bin/hyperf.php phar:build --name link_env.phar -M .env.link:.env
echo APP_NAME=helloworld > .env.link
php link_env.phar show:name -N helloworld
sudo chmod u+x link_env.phar
./link_env.phar show:name -N helloworld
container:
name: Test for Psr Container V2.0
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: ${{ matrix.php-version }}
strategy:
matrix:
php-version: [ '7.4', '8.0' ]
max-parallel: 6
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpize
ini-values: opcache.enable_cli=1
coverage: none
- name: Setup Swoole
run: ./.travis/swoole.install.sh
- name: Setup Packages
run: |
cp .travis/.env.example .env
composer remove friendsofphp/php-cs-fixer --dev -W
composer remove symfony/console --dev -W
composer update -oW
- name: Run Test Cases
run: |
composer analyse src/di
vendor/bin/phpunit src/di
log:
name: Test for Psr Log V1.0 ~ V3.0
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: ${{ matrix.php-version }}
strategy:
matrix:
php-version: [ '8.0' ]
log-version: [ '^1.0', '^2.0', '^3.0' ]
max-parallel: 3
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpize
ini-values: opcache.enable_cli=1
coverage: none
- name: Setup Swoole
run: ./.travis/swoole.install.sh
- name: Removed conflict Packages
run: |
composer remove elasticsearch/elasticsearch --dev -W
composer remove jonahgeorge/jaeger-client-php --dev -W
composer remove bandwidth-throttle/token-bucket --dev -W
composer remove friendsofphp/php-cs-fixer --dev -W
composer remove symfony/console --dev -W
- name: Run Test Cases
run: |
composer require "psr/log:${{ matrix.log-version }}"
composer update -oW
if [ ${{ matrix.log-version }} != '^3.0' ]
then
composer require symfony/console --dev -W
composer analyse src/framework
fi
composer analyse src/server/src/Entry/Logger.php
composer analyse src/logger
composer test src/framework
composer test src/logger
composer info | grep psr/log