-
Notifications
You must be signed in to change notification settings - Fork 2
362 lines (290 loc) · 10.4 KB
/
main.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
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
name: PHP test
on:
push:
pull_request:
repository_dispatch:
types: [ push ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2', '8.3']
composer-flags: ['']
experimental: [false]
services:
mongo:
image: mongo
env:
MONGO_INITDB_DATABASE: easio_test
MONGO_INITDB_ROOT_USERNAME: appuser
MONGO_INITDB_ROOT_PASSWORD: apppassword
postgres:
image: postgres:13.3-alpine3.14
ports:
- 5432:5432
env:
POSTGRES_DB: 'parthenon_test'
POSTGRES_USER: 'appuser'
POSTGRES_PASSWORD: 'apppassword'
timescale:
image: timescale/timescaledb:latest-pg12
ports:
- 5433:5432
env:
POSTGRES_DB: 'parthenon_test'
POSTGRES_USER: 'appuser'
POSTGRES_PASSWORD: 'apppassword'
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Runs Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 7.14.0
port: 9200
- name: Create all the databases
run: psql -h localhost -d parthenon_test -U appuser -f docker/database/init.sql
env:
PGPASSWORD: apppassword
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit-bridge
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql, mongodb, http
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install yarn
uses: borales/actions-yarn@v3.0.0
with:
cmd: install # will run `yarn install` command
- name: Install yarn encore production
uses: borales/actions-yarn@v3.0.0
with:
cmd: encore dev
- name: Run vitest
uses: borales/actions-yarn@v3.0.0
with:
cmd: vitest run
- name: Install dependencies
run: |
composer update ${{ matrix.composer-flags }}
- name: Code Style
run: |
export PHP_CS_FIXER_IGNORE_ENV=1
vendor/bin/php-cs-fixer fix src --dry-run
#obol
- name: Behat
run: |
vendor/bin/behat
- name: PHPUnit
run: |
vendor/bin/phpunit
- name: Deptrac
run: |
vendor/bin/deptrac
create_bundle_repos:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set commit env
run: echo "LOCATION=$(pwd)" >> $GITHUB_ENV
- name: Set commit env
run: echo "COMMIT_MESSAGE=$(git log --format=%s -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set branch env
run: echo "BRANCH=$(echo $GITHUB_REF | rev | cut -d\/ -f1 | rev)" >> $GITHUB_ENV
- name: Set committer email
run: echo "COMITTER_EMAIL=$(git show -s --format='%ae' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set committer name
run: echo "COMITTER_NAME=$(git show -s --format='%an' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Setup git
run: |
git config --global user.name "$COMITTER_NAME"
git config --global user.email "$COMITTER_EMAIL"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.BUILDBOT_PRIVATE_SSH_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Test
run: echo $BRANCH
- name: Clone funded
run: git clone git@github.com:getparthenon/parthenon.git ../public-edition
- name: Checkout branch
run: |
cd ../public-edition
git checkout $BRANCH || git checkout -b $BRANCH
cd $LOCATION
sh create-public-edition.sh
create_export_bundle_repos:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set commit env
run: echo "LOCATION=$(pwd)" >> $GITHUB_ENV
- name: Set commit env
run: echo "COMMIT_MESSAGE=$(git log --format=%s -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set branch env
run: echo "BRANCH=$(echo $GITHUB_REF | rev | cut -d\/ -f1 | rev)" >> $GITHUB_ENV
- name: Set committer email
run: echo "COMITTER_EMAIL=$(git show -s --format='%ae' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set committer name
run: echo "COMITTER_NAME=$(git show -s --format='%an' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Setup git
run: |
git config --global user.name "$COMITTER_NAME"
git config --global user.email "$COMITTER_EMAIL"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.BUILDBOT_PRIVATE_SSH_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Test
run: echo $BRANCH
- name: Clone export bundle
run: git clone git@github.com:getparthenon/export-bundle.git ../export-bundle
- name: Checkout branch
run: |
cd ../export-bundle
git checkout $BRANCH || git checkout -b $BRANCH
composer install
cd $LOCATION
sh create-export-bundle.sh
create_obol_repos:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set commit env
run: echo "LOCATION=$(pwd)" >> $GITHUB_ENV
- name: Set commit env
run: echo "COMMIT_MESSAGE=$(git log --format=%s -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set branch env
run: echo "BRANCH=$(echo $GITHUB_REF | rev | cut -d\/ -f1 | rev)" >> $GITHUB_ENV
- name: Set committer email
run: echo "COMITTER_EMAIL=$(git show -s --format='%ae' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set committer name
run: echo "COMITTER_NAME=$(git show -s --format='%an' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Setup git
run: |
git config --global user.name "$COMITTER_NAME"
git config --global user.email "$COMITTER_EMAIL"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.BUILDBOT_PRIVATE_SSH_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Test
run: echo $BRANCH
- name: Clone export bundle
run: git clone git@github.com:getparthenon/obol.git ../obol
- name: Checkout branch
run: |
cd ../obol
git checkout $BRANCH || git checkout -b $BRANCH
composer install
cd $LOCATION
sh create-obol.sh
create_skeleton_repos:
needs: create_bundle_repos
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set commit env
run: echo "LOCATION=$(pwd)" >> $GITHUB_ENV
- name: Set commit env
run: echo "COMMIT_MESSAGE=$(git log --format=%s -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set branch env
run: echo "BRANCH=$(echo $GITHUB_REF | rev | cut -d\/ -f1 | rev)" >> $GITHUB_ENV
- name: Set committer email
run: echo "COMITTER_EMAIL=$(git show -s --format='%ae' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set committer name
run: echo "COMITTER_NAME=$(git show -s --format='%an' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Setup git
run: |
git config --global user.name "$COMITTER_NAME"
git config --global user.email "$COMITTER_EMAIL"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.BUILDBOT_PRIVATE_SSH_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Test
run: echo $BRANCH
- name: Clone funded
run: git clone git@github.com:getparthenon/skeleton.git ../skeleton
- name: Checkout branch
run: |
cd ../skeleton
git checkout $BRANCH || git checkout -b $BRANCH
cd $LOCATION
sh create-skeleton.sh
create_js_sub_repos:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set commit env
run: echo "LOCATION=$(pwd)" >> $GITHUB_ENV
- name: Set commit env
run: echo "COMMIT_MESSAGE=$(git log --format=%B -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set branch env
run: echo "BRANCH=$(echo $GITHUB_REF | rev | cut -d\/ -f1 | rev)" >> $GITHUB_ENV
- name: Set committer email
run: echo "COMITTER_EMAIL=$(git show -s --format='%ae' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Set committer name
run: echo "COMITTER_NAME=$(git show -s --format='%an' -n 1 $GITHUB_SHA)" >> $GITHUB_ENV
- name: Setup git
run: |
git config --global user.name "$COMITTER_NAME"
git config --global user.email "$COMITTER_EMAIL"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.BUILDBOT_PRIVATE_SSH_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Test
run: echo $BRANCH
- name: Clone vue-menu
run: git clone git@github.com:getparthenon/vue-menu.git ../vue-menu
- name: Checkout branch
run: |
cd ../vue-menu
git checkout $BRANCH || git checkout -b $BRANCH
cd $LOCATION
sh create-vue-menu.sh
- name: Clone ui
run: git clone git@github.com:getparthenon/parthenon-ui.git ../ui
- name: Checkout branch
run: |
cd ../vue-menu
git checkout $BRANCH || git checkout -b $BRANCH
cd $LOCATION
sh create-parthenon-ui.sh