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'