From 0c4f4bf754ddeca71c822288646f5098496b8048 Mon Sep 17 00:00:00 2001 From: Craig Peterson <192540+captncraig@users.noreply.github.com> Date: Mon, 15 Jul 2019 11:50:34 -0400 Subject: [PATCH] Add gandi and others to integration tests (#518) * add gandi to integration tests * add gandilive too * reference correct secrets * add ns1 too * add DNSIMPLE * disable failing ones for now --- build/azure-pipelines/integration.yml | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/build/azure-pipelines/integration.yml b/build/azure-pipelines/integration.yml index 8afef3462..b77da42ef 100644 --- a/build/azure-pipelines/integration.yml +++ b/build/azure-pipelines/integration.yml @@ -68,6 +68,42 @@ jobs: DO_DOMAIN: $(DO_DOMAIN) DO_TOKEN: $(DO_TOKEN) +- job: Gandi + steps: + - template: go-env.yaml + - script: go test -v -verbose -provider GANDI + workingDirectory: $(wd) + env: + GANDI_KEY: $(GANDI_KEY) + GANDI_DOMAIN: $(GANDI_DOMAIN) + +# - job: GandiLive +# steps: +# - template: go-env.yaml +# - script: go test -v -verbose -provider GANDI-LIVEDNS +# workingDirectory: $(wd) +# env: +# GANDILIVE_KEY: $(GANDILIVE_KEY) +# GANDILIVE_DOMAIN: $(GANDILIVE_DOMAIN) + +# - job: NS1 +# steps: +# - template: go-env.yaml +# - script: go test -v -verbose -provider NS1 +# workingDirectory: $(wd) +# env: +# NS1_TOKEN: $(NS1_TOKEN) +# NS1_DOMAIN: $(NS1_DOMAIN) + +- job: DNSIMPLE + steps: + - template: go-env.yaml + - script: go test -v -verbose -provider DNSIMPLE + workingDirectory: $(wd) + env: + DNSIMPLE_TOKEN: $(DNSIMPLE_TOKEN) + DNSIMPLE_DOMAIN: $(DNSIMPLE_DOMAIN) + - job: Vultr steps: - template: go-env.yaml @@ -76,3 +112,4 @@ jobs: env: VULTR_DOMAIN: $(VULTR_DOMAIN) VULTR_TOKEN: $(VULTR_TOKEN) +