summary refs log tree commit diff stats
path: root/testament/specs.nim
diff options
context:
space:
mode:
authorLeorize <leorize+oss@disroot.org>2019-10-03 17:36:07 +0200
committernarimiran <narimiran@disroot.org>2019-10-03 18:36:07 +0200
commitacebcd7899bf497588b509bf0524368cf7323240 (patch)
treefe449a89e66ac1400ee029f2ecbf14d145133065 /testament/specs.nim
parent880df4de625a7ae09da0a5b4b681ab4b49a98dbd (diff)
downloadNim-acebcd7899bf497588b509bf0524368cf7323240.tar.gz
testament: add azure integration
Diffstat (limited to 'testament/specs.nim')
-rw-r--r--testament/specs.nim3
1 files changed, 3 insertions, 0 deletions
diff --git a/testament/specs.nim b/testament/specs.nim
index 7943e63cc..30f2b97d1 100644
--- a/testament/specs.nim
+++ b/testament/specs.nim
@@ -13,6 +13,7 @@ var compilerPrefix* = findExe("nim")
 
 let isTravis* = existsEnv("TRAVIS")
 let isAppVeyor* = existsEnv("APPVEYOR")
+let isAzure* = existsEnv("TF_BUILD")
 
 var skips*: seq[string]
 
@@ -214,6 +215,8 @@ proc parseSpec*(filename: string): TSpec =
           if isTravis: result.err = reDisabled
         of "appveyor":
           if isAppVeyor: result.err = reDisabled
+        of "azure":
+          if isAzure: result.err = reDisabled
         of "32bit":
           if sizeof(int) == 4:
             result.err = reDisabled