kea_testing.groovy 1.71 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
/**
* Jenkinsfile to deploy multiple Docker containers based on docker-compose into a DEV server and run any test.
* This pipeline will run the Docker containers, execute the tests and then stop and remove the containers from the DEV
* server automatically.
**/


pipeline {

agent any

environment {

// Keep as is the following two lines
PRIVATE_REGISTRY = "https://registry.curex-project.eu:443/curex-local/"
ARTIFACTORY_URL = "registry.curex-project.eu:443/curex-local/"

DEPLOYMENT_HOST = "116.203.166.220:2376"
DEPLOYMENT_HOST_CREDENTIALS = "vm2-creds"
}

stages {
stage('Checkout the source code') {
steps {
checkout scm
}
}
stage('Deploy Docker containers in DEV server') {
steps {
script {
docker.withServer("$DEPLOYMENT_HOST", "$DEPLOYMENT_HOST_CREDENTIALS") {
docker.withRegistry("$PRIVATE_REGISTRY" , 'artifactory') {

echo 'Deploying the specified Docker containers in DEV server'
sh 'sh deploy.sh'
}
}
}
}
}
stage('Run tests') {
steps {
script {

echo 'Run any necessary test'
/* Here do your tests */
}
}
}


stage('Stop and remove the Docker containers in DEV server') {
steps {
script {
docker.withServer("$DEPLOYMENT_HOST", "$DEPLOYMENT_HOST_CREDENTIALS") {
docker.withRegistry("$PRIVATE_REGISTRY" , 'artifactory') {

echo 'Stop and remove the specified Docker containers from the DEV server'
sh 'sh delete.sh'
}
}
}
}
}

}
}