-
Notifications
You must be signed in to change notification settings - Fork 0
197 lines (171 loc) · 5.6 KB
/
phpunits.yaml
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
name: phpunits
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
MEMCACHED_HOST: localhost
REDIS_HOST: localhost
REDIS_PORT: 6379
MEMCACHED_PORT: 11211
jobs:
units:
runs-on: ubuntu-latest
strategy:
matrix:
wallet-versions: [ "10.0", 9.6, 9.5, 9.4, 9.3, 9.2, 8.4, 7.3 ]
php-versions: [ 8.3 ]
databases: [ pgsql, mysql ]
caches: [ redis, memcached ]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 6379:6379
memcached:
image: memcached
options: >-
--health-cmd "timeout 5 bash -c 'cat < /dev/null > /dev/udp/127.0.0.1/11211'"
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 11211:11211
pgsql:
image: postgres
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: wallet
POSTGRES_DB: wallet
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 5432:5432
mysql:
image: bitnami/mysql:8.0
env:
MYSQL_AUTHENTICATION_PLUGIN: mysql_native_password
MYSQL_ROOT_PASSWORD: wallet
MYSQL_DATABASE: wallet
options: >-
--health-cmd="mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 3306:3306
steps:
- name: Checkout
id: git-checkout
uses: actions/checkout@v4
- name: Setup PHP
id: php-install
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: bcmath, mbstring, pgsql, mysql, sqlite, redis, memcached
coverage: pcov
env:
runner: self-hosted
- name: Uploading the correct version
id: composer-correct
run: cp composer_${{ matrix.wallet-versions }}.json composer.json
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
id: composer-dependencies
run: composer install --prefer-dist --no-progress
- name: Replace old phpunit.xml
id: phpunit-9x-xml
run: cp phpunit.old.xml phpunit.xml
if: ${{ matrix.wallet-versions < 10 }}
- name: Prepare run test suite
id: unit-prepare
run: |
mkdir build
- name: Run test suite
id: unit-run
run: composer parabench
env:
CACHE_DRIVER: ${{ matrix.caches }}
DB_CONNECTION: ${{ matrix.databases }}
CACHE_PREFIX: ${{matrix.caches}}-${{ matrix.databases }}-${{ matrix.wallet-versions }}-${{ matrix.php-versions }}
- name: Save artifact
id: unit-artifact
run: |
cp build/junit.xml build/junit-${{matrix.wallet-versions}}-${{ matrix.php-versions }}-${{ matrix.caches }}-${{ matrix.databases }}.xml
env:
CACHE_DRIVER: ${{ matrix.caches }}
DB_CONNECTION: ${{ matrix.databases }}
CACHE_PREFIX: ${{matrix.caches}}-${{ matrix.databases }}-${{ matrix.wallet-versions }}-${{ matrix.php-versions }}
- name: Artifact upload
id: unit-upload
uses: actions/upload-artifact@v3
with:
name: junit
path: build/junit-${{matrix.wallet-versions}}-${{ matrix.php-versions }}-${{ matrix.caches }}-${{ matrix.databases }}.xml
artifacts:
if: ${{ github.event.pull_request != null }}
permissions: write-all
name: Display results
needs: units
runs-on: ubuntu-latest
steps:
- name: Download junit
id: artifacts-download
uses: actions/download-artifact@v3
with:
name: junit
- uses: actions/setup-go@v5
id: artifacts-golang
with:
go-version: '>=1.18.0'
- name: Install junit-reporter
id: artifacts-tools-install
run: go install github.com/bavix/junit-reporter@latest
- name: Display all junit
id: artifacts-display-all
run: |
echo "stdout<<EOF" >> $GITHUB_OUTPUT
echo "$(~/go/bin/junit-reporter --path . --group --ticks --median)" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Display major junit
id: artifacts-display-major
run: |
echo "stdout<<EOF" >> $GITHUB_OUTPUT
echo "$(~/go/bin/junit-reporter --path . --group --major --ticks --median)" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Find Comment
uses: peter-evans/find-comment@v2
id: artifacts-fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: Build output
- name: Create or update comment
uses: peter-evans/create-or-update-comment@v3
with:
comment-id: ${{ steps.artifacts-fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
body: |
Build output
All versions:
${{ steps.artifacts-display-all.outputs.stdout }}
Major compare:
${{ steps.artifacts-display-major.outputs.stdout }}
edit-mode: replace