25 lines
625 B
Groovy
25 lines
625 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 's434700:ium_s434700' }
|
|
}
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s434700/ium_s434700.git'
|
|
}
|
|
}
|
|
stage('sh: Shell Script') {
|
|
steps {
|
|
sh 'chmod +x data.sh'
|
|
sh './data.sh'
|
|
}
|
|
}
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
archiveArtifacts 'train_set.csv'
|
|
archiveArtifacts 'dev_set.csv'
|
|
archiveArtifacts 'test_set.csv'
|
|
}
|
|
}
|
|
}
|
|
} |