summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-06-26 20:00:00 +0200
committerGitHub <noreply@github.com>2019-06-26 20:00:00 +0200
commit441f6abac2d8967cc993b6d9d947975f707ff505 (patch)
tree1a20561ace4b83680030444e12009e1c660084cf /azure-pipelines.yml
parent2ec946a16b88456961b971c48cf43ff5b6eb3f86 (diff)
parent6027bfe9ad1cb07a4df46af0bfefcb60a230fbb1 (diff)
downloadATCD-441f6abac2d8967cc993b6d9d947975f707ff505.tar.gz
Merge pull request #928 from jwillemsen/jwi-azurebadge
Use correct azure devops badge
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 9d6b0951d27..ddca4e85fa4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -4,6 +4,14 @@ variables:
MPC_ROOT: $(Build.SourcesDirectory)/ACE/MPC
system.prefergit: true
+schedules:
+- cron: "0 7 * * SUN"
+ displayName: Weekly Sunday
+ branches:
+ include:
+ - master
+ always: true
+
resources:
- repo: self
fetchDepth: 1
@@ -182,11 +190,12 @@ jobs:
SSL_ROOT: $(Build.SourcesDirectory)\vcpkg\packages\openssl-windows_$(vcpkgarch)
SSL_LIBDIR: $(SSL_ROOT)\$(vcpkglibdir)
XERCESC_LIBDIR: $(XERCESCROOT)\$(vcpkglibdir)
+ VCPKG_ROOT: $(Build.SourcesDirectory)\vcpkg
steps:
- powershell: |
- git clone --depth 1 git://github.com/Microsoft/vcpkg.git $(Build.SourcesDirectory)\vcpkg
- .\vcpkg\bootstrap-vcpkg.bat
- .\vcpkg\vcpkg.exe install --recurse --triplet $(vcpkgarch) openssl xerces-c
+ git clone --depth 1 git://github.com/Microsoft/vcpkg.git $(VCPKG_ROOT)
+ $(VCPKG_ROOT)\bootstrap-vcpkg.bat
+ $(VCPKG_ROOT)\vcpkg.exe install --recurse --triplet $(vcpkgarch) openssl xerces-c
displayName: vcpkg
- powershell: |
'#include "ace/config-win32.h"' > $(ACE_ROOT)/ace/config.h