mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-10-09 13:27:39 +08: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:
parent
44a7ba5711
commit
0c4f4bf754
1 changed files with 37 additions and 0 deletions
|
@ -68,6 +68,42 @@ jobs:
|
||||||
DO_DOMAIN: $(DO_DOMAIN)
|
DO_DOMAIN: $(DO_DOMAIN)
|
||||||
DO_TOKEN: $(DO_TOKEN)
|
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
|
- job: Vultr
|
||||||
steps:
|
steps:
|
||||||
- template: go-env.yaml
|
- template: go-env.yaml
|
||||||
|
@ -76,3 +112,4 @@ jobs:
|
||||||
env:
|
env:
|
||||||
VULTR_DOMAIN: $(VULTR_DOMAIN)
|
VULTR_DOMAIN: $(VULTR_DOMAIN)
|
||||||
VULTR_TOKEN: $(VULTR_TOKEN)
|
VULTR_TOKEN: $(VULTR_TOKEN)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue