new Jenkinsfile
This commit is contained in:
parent
5df5033501
commit
ce40618c29
28
Docker/Jenkinsfile
vendored
28
Docker/Jenkinsfile
vendored
@ -1,20 +1,34 @@
|
|||||||
node {
|
pipeline {
|
||||||
def app
|
agent {
|
||||||
stage('Clone repository') {
|
dockerfile {
|
||||||
cleanWs()
|
filename 'Dockerfile'
|
||||||
checkout scm
|
dir 'Docker'
|
||||||
|
label 'ium_docker'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
|
||||||
|
stage('Check out from version control') {
|
||||||
|
steps {
|
||||||
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444018', url: 'https://git.wmi.amu.edu.pl/s444018/ium_444018.git']]])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build image') {
|
stage('Build image') {
|
||||||
|
steps {
|
||||||
app = docker.build("ium_docker", "./Docker/")
|
app = docker.build("ium_docker", "./Docker/")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Split set into dev/train/test') {
|
stage('Split set into dev/train/test') {
|
||||||
|
steps {
|
||||||
app.inside {
|
app.inside {
|
||||||
sh 'cd ..'
|
|
||||||
sh 'ls -la'
|
sh 'ls -la'
|
||||||
sh 'python3 ./Docker/script.py'
|
sh 'python3 ./Docker/script.py'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user