From 41d2c9716959457bf7460b1aca61df7f64607c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 23 Sep 2021 18:31:26 +0200 Subject: [PATCH] Jenkinsfile: update dev site hostname MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9912a48..e935754 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,11 +11,12 @@ pipeline { } environment { - SCP_OPTS = 'StrictHostKeyChecking=no' - DEV_HOST = 'jenkins@node-01.do-ams3.proxy.misc.statusim.net' - DEV_SITE = 'dev.vac.dev' GH_USER = 'status-im-auto' GH_MAIL = 'auto@status.im' + /* Dev site deployment. */ + DEV_SITE = 'dev.vac.dev' + DEV_HOST = 'jenkins@node-01.do-ams3.sites.misc.statusim.net' + SCP_OPTS = 'StrictHostKeyChecking=no' /* Avoid need for sudo when using bundler. */ GEM_HOME = "${env.HOME}/.gem" }