Updated Jenkinsfile
Some checks failed
Job Folder/Gitea Instance/psniquiz/pipeline/head There was a failure building this commit
Some checks failed
Job Folder/Gitea Instance/psniquiz/pipeline/head There was a failure building this commit
This commit is contained in:
parent
02574ab33a
commit
bb08e911f4
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -1,18 +1,13 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
|
||||||
environment {
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'QuizServerCreds', usernameVariable: 'USERNAME', passwordVariable: 'SERVER_IP')]) {
|
|
||||||
SERVER_USERNAME = "${USERNAME}"
|
|
||||||
SERVER_IP = "${SERVER_IP}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Copy Files on Server') {
|
stage('Copy Files on Server') {
|
||||||
steps {
|
steps {
|
||||||
|
withCredentials([usernamePassword(credentialsId: 'QuizServerCreds', usernameVariable: 'USERNAME', passwordVariable: 'SERVER_IP')]) {
|
||||||
sh 'ssh-keyscan ${SERVER_IP} > ~/.ssh/known_hosts'
|
sh 'ssh-keyscan ${SERVER_IP} > ~/.ssh/known_hosts'
|
||||||
sh 'rsync -avzhe --exclude "Jenkinsfile" ssh * ${SERVER_USERNAME}@${SERVER_IP}:/var/www/public_html'
|
sh 'rsync -avzhe --exclude "Jenkinsfile" ssh * ${USERNAME}@${SERVER_IP}:/var/www/public_html'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user