hyperf/.github/workflows/test.yml

73 lines
2.5 KiB
YAML
Raw Normal View History

2020-10-27 23:36:09 +08:00
name: PHPUnit for Hyperf
2021-04-19 22:03:42 +08:00
on:
push:
pull_request:
schedule:
2021-08-09 09:37:46 +08:00
- cron: '0 2 * * *'
2020-10-27 23:36:09 +08:00
jobs:
ci:
2021-06-01 11:01:56 +08:00
name: Test on PHP${{ matrix.php-version }} Swoole-${{ matrix.sw-version }}
2020-10-27 23:36:09 +08:00
runs-on: "${{ matrix.os }}"
strategy:
matrix:
2021-01-10 16:46:37 +08:00
os: [ ubuntu-latest ]
php-version: [ '8.0', '8.1', '8.2' ]
sw-version: [ 'v4.8.12', 'v5.0.2', 'master' ]
exclude:
- php-version: '8.2'
sw-version: 'v4.8.12'
2021-04-19 22:03:42 +08:00
max-parallel: 12
fail-fast: false
env:
SW_VERSION: ${{ matrix.sw-version }}
2021-06-01 11:01:56 +08:00
MYSQL_VERSION: '5.7'
PGSQL_VERSION: '14'
2020-10-27 23:36:09 +08:00
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
2021-12-10 17:14:34 +08:00
ini-values: opcache.enable_cli=0
2020-10-27 23:36:09 +08:00
coverage: none
- name: Setup Swoole
run: |
2021-04-02 12:55:30 +08:00
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev libc-ares-dev libpq-dev
2021-04-19 22:03:42 +08:00
wget https://github.com/swoole/swoole-src/archive/${SW_VERSION}.tar.gz -O swoole.tar.gz
2021-04-02 12:55:30 +08:00
mkdir -p swoole
tar -xf swoole.tar.gz -C swoole --strip-components=1
rm swoole.tar.gz
cd swoole
phpize
if [ _${{ matrix.sw-version }} = '_v5.0.2' ] || [ _${{ matrix.sw-version }} = '_master' ]
then
./configure --enable-openssl --enable-swoole-curl --enable-cares --enable-swoole-pgsql --enable-brotli
else
./configure --enable-openssl --enable-http2 --enable-swoole-curl --enable-swoole-json
fi
2021-04-02 12:55:30 +08:00
make -j$(nproc)
sudo make install
sudo sh -c "echo extension=swoole > /etc/php/${{ matrix.php-version }}/cli/conf.d/swoole.ini"
2021-04-02 12:55:30 +08:00
sudo sh -c "echo swoole.use_shortname='Off' >> /etc/php/${{ matrix.php-version }}/cli/conf.d/swoole.ini"
php --ri swoole
2020-10-27 23:36:09 +08:00
- name: Setup Packages
run: ./.travis/requirement.install.sh
- name: Run Check
run: ./.travis/run.check.sh
2020-10-27 23:36:09 +08:00
- name: Setup Services
2022-11-07 12:27:22 +08:00
run: ./.travis/setup.services.sh
2020-10-27 23:36:09 +08:00
- name: Setup Mysql
run: export TRAVIS_BUILD_DIR=$(pwd) && bash ./.travis/setup.mysql.sh
- name: Setup PostgreSQL
run: export TRAVIS_BUILD_DIR=$(pwd) && bash ./.travis/setup.pgsql.sh
2020-10-27 23:36:09 +08:00
- name: Run Scripts Before Test
run: cp .travis/.env.example .env
- name: Run Test Cases
2022-11-07 12:27:22 +08:00
run: ./.travis/run.test.sh