-
-
Notifications
You must be signed in to change notification settings - Fork 96
52 lines (51 loc) · 1.61 KB
/
asan.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
name: ASAN
on: [push, pull_request]
jobs:
auth:
runs-on: ubuntu-latest
name: Login to GitHub Container Registry
steps:
- uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
vanilla:
strategy:
matrix:
version: ["8.1", "8.2", "8.3"]
if: success() || failure()
runs-on: ubuntu-latest
needs: auth
name: ASAN, PHP v${{matrix.version}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test parallel
run: docker compose run parallel-asan-${{matrix.version}} docker/parallel.test --asan
opcache:
strategy:
matrix:
version: ["8.1", "8.2", "8.3"]
if: success() || failure()
runs-on: ubuntu-latest
needs: auth
name: ASAN, PHP v${{matrix.version}}, opcache
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test parallel
run: docker compose run parallel-asan-${{matrix.version}} docker/parallel.test -d opcache.enable_cli=1 -d opcache.jit=disable --asan
jit:
strategy:
matrix:
version: ["8.1", "8.2", "8.3"]
if: success() || failure()
runs-on: ubuntu-latest
needs: auth
name: ASAN, PHP v${{matrix.version}}, JIT
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test parallel
run: docker compose run parallel-asan-${{matrix.version}} docker/parallel.test -d opcache.enable_cli=1 -d opcache.jit=function -d opcache.jit_buffer_size=32M --asan