-
Notifications
You must be signed in to change notification settings - Fork 73
137 lines (115 loc) · 3.56 KB
/
phpunit.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
name: PHPUnit
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: polls
SERVER_PATH: server
DB_USER: root
DB_PASSWORD: rootpassword
DB_NAME: nextcloud
MYSQL_PORT: 4444
PGSQL_PORT: 5432
jobs:
sqlite:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.0']
server-versions: ['stable25']
name: SQLite
steps:
- uses: actions/checkout@v3
with:
path: src
- name: Setup server
uses: ./src/.github/actions/setup-server
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
php-tools: phpunit:9
server-path: ${{ env.SERVER_PATH }}
db-engine: sqlite
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.integration.xml
mysql:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['8.1']
server-versions: ['stable26']
name: MySQL
services:
mysql:
image: mysql:8.0
ports:
- 4444:3306/tcp
env:
MYSQL_ROOT_PASSWORD: ${{ env.DB_PASSWORD }}
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- uses: actions/checkout@v3
with:
path: src
- name: Setup server
uses: ./src/.github/actions/setup-server
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
php-tools: phpunit:9
server-path: ${{ env.SERVER_PATH }}
db-engine: 'mysql'
mysql-port: ${{ env.MYSQL_PORT }}
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.integration.xml
pgsql:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.2']
server-versions: ['master']
name: PostgreSQL
services:
postgres:
image: postgres:14.5-bullseye
env:
POSTGRES_USER: ${{ env.DB_USER }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
POSTGRES_DB: ${{ env.DB_NAME }}
POSTGRES_PORT: ${{ env.PGSQL_PORT }}
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- uses: actions/checkout@v3
with:
path: src
- name: Prepare server
uses: ./src/.github/actions/setup-server
with:
server-version: ${{ matrix.server-versions }}
php-version: ${{ matrix.php-versions }}
php-tools: phpunit:9
server-path: ${{ env.SERVER_PATH }}
db-engine: 'pgsql'
pgsql-port: ${{ env.PGSQL_PORT }}
- name: PHPUnit
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: ${{ env.SERVER_PATH }}/apps/${{ env.APP_NAME }}
run: phpunit -c tests/phpunit.integration.xml