diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-05-06 13:50:00 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-05-06 13:50:00 -0400 |
commit | 305eb9a7d51824d0e98089521b63a2513282dbef (patch) | |
tree | c0a104ad02302f998c93aba0c80096e93657b58e | |
parent | acada96664f0b226b8fa3e7192eb0d008367e1f1 (diff) | |
download | cryptography-305eb9a7d51824d0e98089521b63a2513282dbef.tar.gz cryptography-305eb9a7d51824d0e98089521b63a2513282dbef.tar.bz2 cryptography-305eb9a7d51824d0e98089521b63a2513282dbef.zip |
only build tags, *.x branches, master, and PRs (#4875)
no alex-patch-* :P
-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" \ |