Updated Jenkinsfile
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit
Details
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
1bd1c0a9ce
commit
7cdbb6645a
|
@ -4,39 +4,32 @@ pipeline {
|
||||||
stage('Initial setup...') {
|
stage('Initial setup...') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Create or update the virtual Python environment'
|
echo 'Create or update the virtual Python environment'
|
||||||
sh 'make venv VERBOSE=1'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build the code and generate tests results...') {
|
stage('Build the code and generate tests results...') {
|
||||||
steps {
|
steps {
|
||||||
sh '. ./ci_venv/bin/activate && make -C src results VERBOSE=1 PYTHONPATH=$PWD/src'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Create a setup file...') {
|
stage('Create a setup file...') {
|
||||||
steps {
|
steps {
|
||||||
sh '. ~/.profile && . ./ci_venv/bin/activate && make selfex VERBOSE=1 PYTHONPATH=$PWD/src'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Test installation...') {
|
stage('Test installation...') {
|
||||||
steps {
|
steps {
|
||||||
sh '. ./ci_venv/bin/activate && cd ./package/ && ./MsSpec*.setup --accept -- -y -d'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Building HTML documentation...') {
|
stage('Building HTML documentation...') {
|
||||||
steps {
|
steps {
|
||||||
sh '. ./ci_venv/bin/activate && make doc VERBOSE=1'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Syncing website...') {
|
stage('Syncing website...') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Updating the website files'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Cleaning up...') {
|
stage('Cleaning up...') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Cleaning artifacts...'
|
echo 'Cleaning artifacts...'
|
||||||
sh 'make clean VERBOSE=1'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue