1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

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
This commit is contained in:
Craig Peterson
2019-07-15 11:50:34 -04:00
committed by GitHub
parent 44a7ba5711
commit 0c4f4bf754

View File

@@ -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)