forked from elastic/apm-agent-php
-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (36 loc) · 782 Bytes
/
loop.yml
File metadata and controls
42 lines (36 loc) · 782 Bytes
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
name: loop
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 5-6'
permissions:
contents: read
jobs:
loop-matrix:
runs-on: ubuntu-latest
timeout-minutes: 300
strategy:
fail-fast: false
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
dockerfile:
- "Dockerfile"
- "Dockerfile.alpine"
env:
PHP_VERSION: ${{ matrix.php-version }}
DOCKERFILE: ${{ matrix.dockerfile }}
LOOPS: '50'
steps:
- uses: actions/checkout@v3
- name: Prepare
run: make -f .ci/Makefile prepare
- name: Build
run: make -f .ci/Makefile build
- name: Loop
run: make -f .ci/Makefile loop