summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: ad9db01ff7fb09919218bca8206b8ea52fd82eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
trigger:
  - PHP-7.4
  - master

jobs:
  - template: azure/job.yml
    parameters:
      configurationName: RELEASE_NTS
      configurationParameters: '--disable-debug --disable-zts'
  - template: azure/job.yml
    parameters:
      configurationName: DEBUG_NTS
      configurationParameters: '--enable-debug --disable-zts'
  - template: azure/job.yml
    parameters:
      configurationName: RELEASE_ZTS
      configurationParameters: '--disable-debug --enable-zts'
  - template: azure/job.yml
    parameters:
      configurationName: DEBUG_ZTS
      configurationParameters: '--enable-debug --enable-zts'