From f19f260509501abd027ad84248a2bc776a8b5387 Mon Sep 17 00:00:00 2001 From: psycho Date: Tue, 11 Aug 2020 21:23:50 +0200 Subject: [PATCH] testing_05 05 --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d729881..6f54db9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,6 +3,7 @@ def debug = false def stageName = '' def git_link +def config_link = 'https://git.psychobox.org/psycho/owrt_build_script.git' def config_path = '' @@ -36,7 +37,8 @@ node('test') stageName = 'checkout' stage(stageName) { - sh label: 'checkout_git', script: 'git clone ' + git_link + ' openwrt; cd openwrt' + sh label: 'checkout_configs', script: 'git clone ' + config_link + ' owrt_build_script' + sh label: 'checkout_openwrt', script: 'git clone ' + git_link + ' openwrt; cd openwrt' } stageName = 'pre-build'