Update Jenkinsfile
This commit is contained in:
parent
8c9e0a8381
commit
369777ee87
67
Jenkinsfile
vendored
67
Jenkinsfile
vendored
@ -1,30 +1,37 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Clone repository') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464906/ium_464906']]])
|
||||
}
|
||||
}
|
||||
stage('Set execute permission') {
|
||||
steps {
|
||||
script {
|
||||
sh 'chmod +x data_processing.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Run shell script') {
|
||||
steps {
|
||||
script {
|
||||
sh './data_processing.sh'
|
||||
}
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: 'results.txt', allowEmptyArchive: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: '10000',
|
||||
name: 'CUTOFF',
|
||||
description: 'Liczba wierszy do obcięcia ze zbioru danych')
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Clone repository') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464906/ium_464906']]])
|
||||
}
|
||||
}
|
||||
stage('Set execute permission') {
|
||||
steps {
|
||||
script {
|
||||
sh 'chmod +x data_processing.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Run shell script') {
|
||||
steps {
|
||||
script {
|
||||
sh './data_processing.sh'
|
||||
}
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: 'results.txt', allowEmptyArchive: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user