-
Notifications
You must be signed in to change notification settings - Fork 3
102 lines (80 loc) · 2.71 KB
/
ci.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
name: Continuous Integration
on:
push: ~
pull_request: ~
schedule:
-
cron: "0 1 * * 6" # Run at 1am every Saturday
workflow_dispatch: ~
jobs:
tests:
name: "PHP ${{ matrix.php }}"
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
env:
ESB_CONSOLE_PORT: 8080
ESB_HTTP_SERVER_PORT: 34981
ESB_BEANSTALKD_URL: tcp://127.0.0.1:11300
ES_BASE_URI: http://127.0.0.1:9200
steps:
- uses: actions/checkout@v2
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- name: Run Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 7.4.1
- name: Run Beanstalk
run: sudo apt-get update && sudo apt-get install beanstalkd
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
tools: "composer, composer-require-checker"
- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache Composer
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-composer-
- name: Install dependencies
run: composer install --no-interaction
- name: Composer Require Checker
run: composer-require-checker
- name: Run Easy Coding Standard
run: vendor/bin/ecs check
- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress -l max -c phpstan.neon src/
- name: PHPUnit tests
run: vendor/bin/phpunit tests
- name: Upload Elasticsearch logs
if: ${{ failure() }}
run: sudo bash ./upload-textfiles "/var/log/elasticsearch/*.log"
roave_bc_check:
name: Roave BC Check
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
- name: Install roave/backward-compatibility-check.
run: composer require --dev roave/backward-compatibility-check --no-plugins
- name: Run roave/backward-compatibility-check.
run: vendor/bin/roave-backward-compatibility-check --format=github-actions