-
Notifications
You must be signed in to change notification settings - Fork 31
363 lines (307 loc) · 11.1 KB
/
deployment.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
name: Deployment
on:
workflow_dispatch:
push:
branches:
- main
- release-**
jobs:
build: #---------------------------------------------------------------------
name: Build Phar
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'wp-cli' }}
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up PHP environment
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: mysql, zip, imagick
coverage: none
tools: composer:2.2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Composer dependencies & cache dependencies
uses: "ramsey/composer-install@v3"
env:
COMPOSER_ROOT_VERSION: 'dev-main'
with:
# Bust the cache at least once a month - output format: YYYY-MM-DD.
custom-cache-suffix: $(date -u -d "-0 month -$(($(date +%d)-1)) days" "+%F")
- name: Store WP-CLI version
run: |
CLI_VERSION=$(head -n 1 vendor/wp-cli/wp-cli/VERSION)
if [[ $CLI_VERSION == *"-alpha"* ]]
then
GIT_HASH=$(git rev-parse HEAD)
GIT_SHORT_HASH=${GIT_HASH:0:7}
CLI_VERSION="$CLI_VERSION-$GIT_SHORT_HASH"
fi
echo "CLI_VERSION=$CLI_VERSION" > $GITHUB_ENV
echo "$CLI_VERSION" > cli_version.txt
- name: Upload WP-CLI version
uses: actions/upload-artifact@v4
with:
name: cli_version
path: cli_version.txt
- name: Build the Phar file
run: php -dphar.readonly=0 utils/make-phar.php wp-cli.phar --version=$CLI_VERSION
- name: Upload built Phar file
uses: actions/upload-artifact@v4
with:
name: wp-cli-phar
path: wp-cli.phar
test: #----------------------------------------------------------------------
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with MySQL ${{ matrix.mysql }}
strategy:
fail-fast: false
matrix:
php: ['7.2', '7.3', '7.4', '8.0']
wp: ['latest']
mysql: ['8.0']
include:
- php: '7.2'
wp: 'trunk'
mysql: '8.0'
- php: '7.2'
wp: 'trunk'
mysql: '5.7'
- php: '7.2'
wp: 'trunk'
mysql: '5.6'
- php: '7.4'
wp: 'trunk'
mysql: '8.0'
- php: '8.0'
wp: 'trunk'
mysql: '8.0'
- php: '8.0'
wp: 'trunk'
mysql: '5.7'
- php: '8.0'
wp: 'trunk'
mysql: '5.6'
- php: '5.6'
wp: '3.7'
mysql: '5.6'
runs-on: ubuntu-20.04
env:
WP_CLI_BIN_DIR: /tmp/wp-cli-phar
needs: [build]
if: ${{ github.repository_owner == 'wp-cli' }}
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Install Ghostscript
run: |
sudo apt-get update
sudo apt-get install ghostscript -y
- name: Set up PHP environment (PHP 5.6 - 7.1)
if: ${{ matrix.php < '7.2' }}
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'
extensions: imagick, mysql, zip
coverage: none
tools: composer:2.2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up PHP environment (PHP 7.2+)
if: ${{ matrix.php >= '7.2' }}
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'
extensions: imagick, mysql, zip
coverage: none
tools: composer
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Composer dependencies & cache dependencies
uses: "ramsey/composer-install@v3"
env:
COMPOSER_ROOT_VERSION: 'dev-main'
with:
# Bust the cache at least once a month - output format: YYYY-MM-DD.
custom-cache-suffix: $(date -u -d "-0 month -$(($(date +%d)-1)) days" "+%F")
- name: Change ImageMagick policy to allow pdf->png conversion.
run: |
sudo sed -i 's/^.*policy.*coder.*none.*PDF.*//' /etc/ImageMagick-6/policy.xml
- name: Download built Phar file
uses: actions/download-artifact@v4
with:
name: wp-cli-phar
- name: Prepare built Phar file for Behat tests
run: |
mkdir -p $WP_CLI_BIN_DIR
mv wp-cli.phar $WP_CLI_BIN_DIR/wp
chmod +x $WP_CLI_BIN_DIR/wp
- name: Setup MySQL Server
id: setup-mysql
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: ${{ matrix.mysql }}
auto-start: true
root-password: root
user: wp_cli_test
password: password1
my-cnf: |
default_authentication_plugin=mysql_native_password
- name: Configure DB environment
run: |
echo "MYSQL_HOST=127.0.0.1" >> $GITHUB_ENV
echo "MYSQL_TCP_PORT=3306" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBROOTUSER=root" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBROOTPASS=root" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBNAME=wp_cli_test" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBUSER=wp_cli_test" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBPASS=password1" >> $GITHUB_ENV
echo "WP_CLI_TEST_DBHOST=127.0.0.1:3306" >> $GITHUB_ENV
- name: Prepare test database
run: composer prepare-tests
- name: Check Behat environment
run: WP_CLI_TEST_DEBUG_BEHAT_ENV=1 composer behat
- name: Run Behat
env:
WP_VERSION: '${{ matrix.wp }}'
run: composer behat || composer behat-rerun
deploy: #-----------------------------------------------------------------------
name: Deployment
runs-on: ubuntu-latest
needs: [build, test]
if: ${{ github.repository_owner == 'wp-cli' && github.event_name != 'workflow_dispatch' }}
steps:
- name: Check out builds repository
uses: actions/checkout@v4
with:
repository: wp-cli/builds
token: ${{ secrets.ACTIONS_BOT }}
- name: Download WP-CLI version
uses: actions/download-artifact@v4
with:
name: cli_version
- name: Set new nightly version
run: |
cat cli_version.txt > phar/NIGHTLY_VERSION
- name: Download built Phar file
uses: actions/download-artifact@v4
with:
name: wp-cli-phar
- name: Set file name for release branch
if: ${{ contains(github.ref, 'release') }}
run: |
echo 'FILENAME=wp-cli-release.phar' > $GITHUB_ENV
- name: Set file name for main branch
if: ${{ contains(github.ref, 'main') }}
run: |
echo 'FILENAME=wp-cli-nightly.phar' > $GITHUB_ENV
- name: Move built Phar file into correct location
run: |
mv wp-cli.phar phar/$FILENAME
- name: Make built Phar executable
run: |
chmod +x phar/$FILENAME
- name : Create hashes
run: |
md5sum phar/$FILENAME | cut -d ' ' -f 1 > phar/$FILENAME.md5
sha512sum phar/$FILENAME | cut -d ' ' -f 1 > phar/$FILENAME.sha512
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add phar/$FILENAME phar/$FILENAME.md5 phar/$FILENAME.sha512 phar/NIGHTLY_VERSION
git commit -m "phar build: $GITHUB_REPOSITORY@$GITHUB_SHA"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.ACTIONS_BOT }}
branch: gh-pages
repository: wp-cli/builds
build-rpm: #-----------------------------------------------------------------------
name: Build RPM package
runs-on: ubuntu-latest
if: ${{ contains(github.ref, 'release') && github.repository_owner == 'wp-cli' && github.event_name != 'workflow_dispatch' }}
needs: [deploy]
steps:
- name: Check out builds repository
uses: actions/checkout@v4
with:
repository: wp-cli/builds
token: ${{ secrets.ACTIONS_BOT }}
- name: Download built Phar file
uses: actions/download-artifact@v4
with:
name: wp-cli-phar
- name: Install RPM build tooling
run: |
sudo apt-get update
sudo apt-get install rpm rpmlint -y
- name: Download RPM build configuration
run: |
wget -O wp-cli-rpm.spec https://raw.githubusercontent.com/wp-cli/wp-cli-bundle/main/utils/wp-cli-rpm.spec
wget -O wp-cli-updaterpm.sh https://raw.githubusercontent.com/wp-cli/wp-cli-bundle/main/utils/wp-cli-updaterpm.sh
- name: Build RPM package
run: |
bash wp-cli-updaterpm.sh
- name: Verify built RPM package contents
run: |
ls rpm-src/noarch
- name: Copy RPM package into builds folder
run: |
cp -n rpm-src/noarch/wp-cli-*.noarch.rpm rpm
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add rpm
git commit -m "rpm build: $GITHUB_REPOSITORY@$GITHUB_SHA"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.ACTIONS_BOT }}
branch: gh-pages
repository: wp-cli/builds
build-deb: #-----------------------------------------------------------------------
name: Build DEB package
runs-on: ubuntu-latest
if: ${{ contains(github.ref, 'release') && github.repository_owner == 'wp-cli' && github.event_name != 'workflow_dispatch' }}
needs: [build-rpm]
steps:
- name: Check out builds repository
uses: actions/checkout@v4
with:
repository: wp-cli/builds
token: ${{ secrets.ACTIONS_BOT }}
- name: Download built Phar file
uses: actions/download-artifact@v4
with:
name: wp-cli-phar
- name: Install DEB build tooling
run: |
sudo apt-get update
sudo apt-get install fakeroot lintian -y
- name: Download DEB build configuration
run: |
wget -O wp-cli-updatedeb.sh https://raw.githubusercontent.com/wp-cli/wp-cli-bundle/main/utils/wp-cli-updatedeb.sh
- name: Build DEB package
run: |
bash wp-cli-updatedeb.sh
- name: Verify built DEB package contents
run: |
ls .
- name: Copy DEB package into builds folder
run: |
cp -n php-wpcli*all.deb deb
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add deb
git commit -m "deb build: $GITHUB_REPOSITORY@$GITHUB_SHA"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.ACTIONS_BOT }}
branch: gh-pages
repository: wp-cli/builds