From 8cec06fd12b1f84c29768c867c06f46ad605f68a Mon Sep 17 00:00:00 2001 From: Kameron Kenny - pi501 Date: Thu, 19 Dec 2024 14:48:54 -0500 Subject: [PATCH] update test step --- Jenkinsfile | 36 +----------------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e2457ee..c95467b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -105,41 +105,7 @@ pipeline { stage('Integration Tests') { steps { sh 'mkdir -p test/results/integration' - sh 'bats -F junit test/integration/dns.bat > test/results/integration/TEST-Integration-dns.xml' - } - } - - stage('test primary dns') { - steps { - sh 'dig ns1.thelinuxpro.net ANY @204.8.15.80' - sh 'dig ns1.in.thelinuxpro.net ANY @10.99.153.241' - sh 'dig ns1.thelinuxpro.net ANY @204.8.15.81' - sh 'dig ns1.in.thelinuxpro.net ANY @10.99.153.242' - sh 'dig kameronkenny.com @204.8.15.80 a' - sh 'dig kameronkenny.com @10.99.153.241 a' - sh 'dig kameronkenny.com @204.8.15.81 a' - sh 'dig kameronkenny.com @10.99.153.242 a' - sh 'dig git.thelinuxpro.net @204.8.15.80 a' - sh 'dig git.thelinuxpro.net @10.99.153.241 a' - sh 'dig git.thelinuxpro.net @204.8.15.81 a' - sh 'dig git.thelinuxpro.net @10.99.153.242 a' - } - } - - stage('verify SOA serial') { - steps { - sh 'dig +multi ns1.thelinuxpro.net ANY @204.8.15.80 soa' - sh 'dig +multi ns1.in.thelinuxpro.net ANY @10.99.153.241 soa' - sh 'dig +multi ns1.thelinuxpro.net ANY @204.8.15.81 soa' - sh 'dig +multi ns1.in.thelinuxpro.net ANY @10.99.153.242 soa' - sh 'dig +multi kameronkenny.com @204.8.15.80 soa' - sh 'dig +multi kameronkenny.com @10.99.153.241 soa' - sh 'dig +multi kameronkenny.com @204.8.15.81 soa' - sh 'dig +multi kameronkenny.com @10.99.153.242 soa' - sh 'dig +multi git.thelinuxpro.net @204.8.15.80 soa' - sh 'dig +multi git.thelinuxpro.net @10.99.153.241 soa' - sh 'dig +multi git.thelinuxpro.net @204.8.15.81 soa' - sh 'dig +multi git.thelinuxpro.net @10.99.153.242 soa' + sh 'bats -F junit test/integration/dns/**/*.bat test/integration/dns/**/**/*.bat > test/results/integration/TEST-Integration-dns.xml' } } }