diff options
-rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 03c8306c..75b012a8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,3 +1,12 @@ +trigger: + branches: + include: + - "master" + - "*.x" + tags: + include: + - "*" + jobs: - job: 'mac' pool: @@ -42,7 +51,7 @@ jobs: - script: | set -e set -x - + CRYPTOGRAPHY_SUPPRESS_LINK_FLAGS=1 \ LDFLAGS="/usr/local/opt/openssl\\@1.1/lib/libcrypto.a /usr/local/opt/openssl\\@1.1/lib/libssl.a" \ CFLAGS="-I/usr/local/opt/openssl\\@1.1/include -Werror -Wno-error=deprecated-declarations -Wno-error=incompatible-pointer-types-discards-qualifiers -Wno-error=unused-function -Wno-error=unused-command-line-argument -mmacosx-version-min=10.9" \ |