-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJenkinsfile
42 lines (40 loc) · 1.12 KB
/
Jenkinsfile
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
node {
stage('Init') {
checkout scm
// sh 'cp /home/jenkins/hotmaps/secrets.py ./api/app/secrets.py'
sh 'cp /home/jenkins/hotmaps/toolbox-service.env ./.env'
sh 'cp -Rf /home/jenkins/hotmaps/pytest_suit .'
sh 'cp /home/jenkins/hotmaps/online_status.sh .'
}
stage('Build') {
try {
sh 'docker-compose -f docker-compose-run-api-only.yml up -d --build'
// let some time for the server (API) to start
sleep 10
// run script that checks if the API is reachable
sh './online_status.sh'
}
catch (error) {
// stop services
sh 'docker-compose -f docker-compose-run-api-only.yml down'
throw exception
}
}
stage('Test') {
try {
// run API tests
sh '''#!/bin/bash
export WORKSPACE=`pwd`
virtualenv testenv -p /usr/bin/python3
source testenv/bin/activate
pip install -U pytest requests
mkdir pytest_reports
pytest --junitxml=pytest_reports/results.xml pytest_suit/
'''
}
finally {
// stop services
sh 'docker-compose -f docker-compose-run-api-only.yml down'
}
}
}