summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-05-29 17:59:36 +0200
committerJoe Watkins <krakjoe@php.net>2019-06-03 22:27:50 +0200
commit74ce8120079a6af65ec649b710b9fc8a619aa83e (patch)
treee6b51f4ffcece394a3b95b7dd53e76c42952c417 /azure-pipelines.yml
parent117f7720be458cd106f2134e800763ca6f8dd667 (diff)
downloadphp-git-74ce8120079a6af65ec649b710b9fc8a619aa83e.tar.gz
Set up CI with Azure Pipelines
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 0000000000..1803a58813
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,21 @@
+trigger:
+ - 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'