-
Notifications
You must be signed in to change notification settings - Fork 3
202 lines (173 loc) · 4.95 KB
/
ci.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
name: "GSIT CI"
on:
# Runs test suite when a new commit is pushed on "master" and "*/bugfixes" branches
# and when a new tag is created
push:
branches:
- master
- '*/bugfixes'
- 'feature/*'
- 'fix/*'
- 'security/*'
tags:
- '*'
# Runs test suite when a PR is opened or synchronyzed
pull_request:
# Runs test suite every night
schedule:
- cron: '0 0 * * *'
# Enable manual run
workflow_dispatch:
jobs:
check_code:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpstan
extensions: xmlrpc
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHPStan
run: phpstan analyse db src public
lint:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: cs2pr, phpcs
extensions: xmlrpc
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run phpcs
run: |
files=$(git diff --name-only --diff-filter=d origin/${{ github.base_ref }} | grep '^\(src\|public\|db\)' || true)
if [ -n "$files" ]; then
phpcs -q --report=checkstyle $files | cs2pr
fi
if: github.event_name == 'pull_request'
check_composer:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: validate composer
run: composer validate --strict
- name: validate extensions required
run: composer check-platform-reqs
tests_unit_integration_MariaDB:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.2', '8.3']
mariadb-versions: ['10.5', '10.6', '10.11', '11.4']
services:
mariadb:
image: mariadb:${{ matrix.mariadb-versions }}
ports:
- 3306:3306
env:
MARIADB_DATABASE: gsittests
MARIADB_USER: gsittests
MARIADB_PASSWORD: gsittests
MARIADB_ROOT_PASSWORD: rootpassword
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: intl, mbstring
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: PHPUnit tests
run: ./vendor/bin/phpunit --coverage-text
tests_unit_integration_PostgreSQL:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.2', '8.3']
pg-versions: ['13', '14', '15', '16', '17']
services:
postgres:
image: postgres:${{ matrix.pg-versions }}
ports:
- 5432:5432
env:
POSTGRES_USER: gsittests
POSTGRES_PASSWORD: gsittests
POSTGRES_DB: gsittests
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: intl, mbstring
- name: update databaseconfiguration
run: |
sed -i 's/mysql/pgsql/g' phinx.php
sed -i 's/utf8mb4/utf8/g' phinx.php
sed -i 's/3306/5432/g' phinx.php
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: PHPUnit tests
run: ./vendor/bin/phpunit --coverage-text