Commit 097a24e194ba736093e067fe713e90397a799d67

Authored by George Vlahavas
1 parent f7afd8ea95

Fix whitespace

Showing 1 changed file with 5 additions and 7 deletions

kea_testing.groovy View file @ 097a24e
... ... @@ -9,8 +9,7 @@
9 9  
10 10 agent any
11 11  
12   - environment {
13   -
  12 + environment {
14 13 // Keep as is the following two lines
15 14 PRIVATE_REGISTRY = "https://registry.curex-project.eu:443/curex-local/"
16 15 ARTIFACTORY_URL = "registry.curex-project.eu:443/curex-local/"
17 16  
... ... @@ -36,14 +35,13 @@
36 35  
37 36 echo 'Deploying the specified Docker containers in DEV server'
38 37 sh 'sh deploy.sh'
39   -
40 38 }
41 39 }
42 40 }
43 41 }
44 42 }
45   -
46   - stage('Run tests') {
  43 +
  44 + stage('Run tests') {
47 45 steps {
48 46 script {
49 47 echo '*************'
... ... @@ -67,7 +65,7 @@
67 65 }
68 66  
69 67  
70   - stage('Stop and remove the Docker containers in DEV server') {
  68 + stage('Stop and remove the Docker containers in DEV server') {
71 69 steps {
72 70 script {
73 71 docker.withServer("$DEPLOYMENT_HOST", "$DEPLOYMENT_HOST_CREDENTIALS") {
... ... @@ -81,7 +79,6 @@
81 79 }
82 80 }
83 81 }
84   -
85 82 }
86 83 }