try without docker
This commit is contained in:
parent
e127d1fd33
commit
846672c723
20
automation/Jenkinsfile
vendored
20
automation/Jenkinsfile
vendored
@ -1,21 +1,21 @@
|
||||
pipeline {
|
||||
agent {
|
||||
dockerfile {
|
||||
dir 'automation'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
//agent {
|
||||
//dockerfile {
|
||||
//dir 'automation'
|
||||
//reuseNode true
|
||||
//}
|
||||
//}
|
||||
agent any
|
||||
stages {
|
||||
stage('Deployment') {
|
||||
when {
|
||||
branch 'main'
|
||||
}
|
||||
steps {
|
||||
sh 'echo Hello World'
|
||||
// sshagent(credentials: ['documentation-buildfix']) {
|
||||
sshagent(credentials: ['documentation-buildfix']) {
|
||||
// Deploy to Apache webserver
|
||||
// sh 'rsync -r --delete --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/'
|
||||
// }
|
||||
sh 'rsync -r --delete --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user