-
-
Notifications
You must be signed in to change notification settings - Fork 9
99 lines (86 loc) · 3.03 KB
/
build.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
name: Build
on:
push:
branches: ['main', '2.5']
pull_request:
release:
types: [created]
schedule:
- cron: '0 4 * * *'
jobs:
tests:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
php: [8.1, 8.2, 8.3]
deps: [high]
include:
- php: 8.1
deps: low
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
ini-values: "phar.readonly=0"
- name: Test & package
if: matrix.deps == 'high'
run: make install test
- name: Coding standards
run: make package
- name: Test & package (min)
if: matrix.deps == 'low'
run: make update-min test-min
- name: Upload the phar
uses: actions/upload-artifact@v4
if: matrix.php == '8.1' && matrix.deps == 'high'
with:
name: zalas-phpunit-globals-extension.phar
path: build/zalas-phpunit-globals-extension.phar
integration-tests:
runs-on: ubuntu-latest
name: Run integration tests
needs: tests
strategy:
matrix:
php: [8.1, 8.2, 8.3]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
ini-values: "phar.readonly=0"
- name: Download the phar
uses: actions/download-artifact@v4
with:
name: zalas-phpunit-globals-extension.phar
path: build/
- name: Test the phar
run: |
make tests/phar/tools/phpunit tools/box && touch build/zalas-phpunit-globals-extension.phar && \
make test-package
publish-phars:
runs-on: ubuntu-latest
name: Publish PHARs
needs: tests
if: github.event_name == 'release'
steps:
- name: Download the phar
uses: actions/download-artifact@v4
with:
name: zalas-phpunit-globals-extension.phar
path: .
- name: Release the phar
uses: shogo82148/actions-upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./zalas-phpunit-globals-extension.phar
asset_name: zalas-phpunit-globals-extension.phar
asset_content_type: application/zip