From 3a5e4d22a69e99eee5c9a54ef2bea4b4261f213b Mon Sep 17 00:00:00 2001 From: Barry Daniels <101455655+barrydaniels-nl@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:20:53 +0100 Subject: [PATCH] Removed import_schemas from Jenkins pipeline (#872) Co-authored-by: Barry Daniels --- Jenkinsfile | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 41c3d2747..f203d07ac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,15 +51,6 @@ node { ] } } - - stage("Import schemas into DSO-API ACC DB") { - tryStep "import", { - build job: 'ams_schema_importer', - parameters: [ - [$class: 'StringParameterValue', name: 'environment', value: 'acceptance'] - ] - } - } } stage('Waiting for approval') { @@ -85,15 +76,6 @@ node { [$class: 'StringParameterValue', name: 'INVENTORY', value: 'production'], [$class: 'StringParameterValue', name: 'PLAYBOOK', value: 'publish-dataservices-static-schemas.yml'], ] - } - } + } } - stage("Import schemas into DSO-API PROD DB") { - tryStep "import", { - build job: 'ams_schema_importer', - parameters: [ - [$class: 'StringParameterValue', name: 'environment', value: 'production'] - ] - } - } }