Jenkins params

This commit is contained in:
simon987 2019-03-24 10:34:17 -04:00
parent 2b41ce4edb
commit d9e8f6a53b

6
jenkins/Jenkinsfile vendored
View File

@ -1,12 +1,10 @@
def remote = [:]
remote.name = 'remote'
remote.host = 'localhost'
remote.user = 'simon'
remote.host = env.DEPLOY_HOST
remote.user = env.DEPLOY_USER
remote.identityFile = '/var/lib/jenkins/.ssh/id_rsa'
remote.knownHosts = '/var/lib/jenkins/.ssh/known_hosts'
remote.allowAnyHosts = true
remote.retryCount = 3
remote.retryWaitSec = 3
logLevel = 'FINER'
pipeline {