-
Notifications
You must be signed in to change notification settings - Fork 4
166 lines (138 loc) · 4.2 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
name: CI
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
builds:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: tests
strategy:
fail-fast: false
matrix:
repository: [
'cakephp/authentication',
'cakephp/authorization',
'cakephp/bake',
'cakephp/chronos',
'cakephp/debug_kit',
'cakephp/docs',
'cakephp/elastic-search',
'cakephp/migrations',
'cakephp/phinx',
'cakephp/queue',
]
name: Build ${{ matrix.repository }}
services:
elasticsearch:
image: elasticsearch:6.8.23
ports:
- 9200:9200
env:
discovery.type: single-node
ES_JAVA_OPTS: -Xms500m -Xmx500m
options: >-
--health-cmd "curl http://127.0.0.1:9200/_cluster/health"
--health-interval 10s
--health-timeout 5s
--health-retries 10
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: ${{ matrix.repository }}
path: tests/${{ matrix.repository }}
- name: Prepare environment
run: |
if [[ '${{ matrix.repository }}' == 'cakephp/docs' ]]; then
cp -r ${{ matrix.repository }}/. docs
else
cp -r ${{ matrix.repository }}/docs/. docs
fi
- name: Build Base Images
working-directory: .
run: |
docker build \
--rm -f Dockerfile -t docs-build-test/builder --no-cache .
docker build \
--rm -f runtime.Dockerfile -t docs-build-test/runtime --no-cache .
- name: Build Docs & Populate Index
run: |
docker build \
--rm -f docs-build-test.Dockerfile -t ci-docs-builder --build-arg REPOSITORY=${{ matrix.repository }} \
--network host --no-cache .
tests:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: console
name: Console tests
services:
elasticsearch:
image: elasticsearch:6.8.23
ports:
- 9200:9200
env:
discovery.type: single-node
ES_JAVA_OPTS: -Xms500m -Xmx500m
options: >-
--health-cmd "curl http://127.0.0.1:9200/_cluster/health"
--health-interval 10s
--health-timeout 5s
--health-retries 10
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.2
extensions: mbstring, intl
coverage: pcov
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Get date part for cache key
id: key-date
run: echo "::set-output name=date::$(date +'%Y-%m')"
- name: Cache composer dependencies
uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ steps.key-date.outputs.date }}-${{ hashFiles('console/composer.json') }}
- name: Composer install
working-directory: console
run: composer install --optimize-autoloader
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run PHPUnit
run: composer test-coverage
- name: Code Coverage Report
if: success()
uses: codecov/codecov-action@v1
cs-stan:
name: Coding Standards & Static Analysis
runs-on: ubuntu-22.04
defaults:
run:
working-directory: console
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: mbstring, intl
tools: cs2pr
- name: Composer Install
run: composer stan-setup
- name: Run phpcs
run: composer cs-check -- --parallel=1 --report=checkstyle | cs2pr
- name: Run psalm
run: composer psalm -- --output-format=github
- name: Run phpstan
run: composer phpstan -- --error-format=github