testing_14

14
This commit is contained in:
psycho 2020-08-13 15:55:15 +02:00
parent a7136254a1
commit fd3c4d1c3d

32
Jenkinsfile vendored
View File

@ -4,7 +4,11 @@ def debug = false
def stageName = '' def stageName = ''
def git_link def git_link
def config_link = 'https://git.psychobox.org/psycho/owrt_build_script.git' def config_link = 'https://git.psychobox.org/psycho/owrt_build_script.git'
def config_path = '' def config_path = 'configs/'
def patch_path = 'patches/'
def script_folder = 'owrt_build_script'
def git_folder = 'openwrt'
def patch = '16M.patch'
if(params.DEBUG) if(params.DEBUG)
@ -19,6 +23,10 @@ if(params.CFG_PATH)
{ {
config_path = params.CFG_PATH config_path = params.CFG_PATH
} }
if(params.PATCH)
{
patch = params.PATCH
}
def printDebug(msg) def printDebug(msg)
{ {
@ -29,26 +37,22 @@ def printDebug(msg)
node('test') node('test')
{ {
if(debug)
{
printDebug('FFUUCCKK')
}
stageName = 'checkout' stageName = 'checkout'
stage(stageName) stage(stageName)
{ {
cleanWs() cleanWs()
sh label: 'checkout_configs', script: 'git clone ' + config_link + ' owrt_build_script' sh label: 'checkout_configs', script: 'git clone ' + config_link + ' ' + config_folder
sh label: 'checkout_openwrt', script: 'git clone ' + git_link + ' openwrt' sh label: 'checkout_openwrt', script: 'git clone ' + git_link + ' ' + git_folder
} }
stageName = 'pre-build' stageName = 'pre-build'
stage(stageName) stage(stageName)
{ {
sh label: 'uiae', script: 'ls -al' sh label: 'uiae', script: 'ls -al'
sh label: 'patch_sources', script: 'cd openwrt; patch -p1 < ../owrt_build_script/patches/16M.patch' sh label: 'patch_sources', script: 'cd ' + git_folder + '; patch -p1 < ../' + script_folder + '/' + patch_path + patch
sh label: 'feeds_update', script: 'cd openwrt; ./scripts/feeds update -a' sh label: 'feeds_update', script: 'cd ' + git_folder + '; ./scripts/feeds update -a'
sh label: 'feeds_install', script: 'cd openwrt; ./scripts/feeds install -a' sh label: 'feeds_install', script: 'cd ' + git_folder + '; ./scripts/feeds install -a'
} }
@ -57,13 +61,13 @@ node('test')
{ {
//step //step
//{ //{
sh label: 'copy_config', script: 'cp owrt_build_script/configs/tl_wr841_v11_config openwrt/.config' sh label: 'copy_config', script: 'cp ' + script_folder + '/' + config_path + 'tl_wr841_v11_config ' + git_folder + '/.config'
sh label: 'build_v11', script: 'cd openwrt; make oldconfig; make -j13 V=s' sh label: 'build_v11', script: 'cd ' + git_folder + '; make oldconfig; make -j13 V=s'
//} //}
//step //step
//{ //{
//sh label: 'copy_config', script: 'cp owrt_build_script/configs/tl_wr841_v12_config openwrt/.config' sh label: 'copy_config', script: 'cp ' + script_folder + '/' + config_path + 'tl_wr841_v12_config ' + git_folder + '/.config'
//sh label: 'build_v12', script: 'cd openwrt; make oldconfig; make -j13' sh label: 'build_v12', script: 'cd ' + git_folder + '; make oldconfig; make -j13 V=s'
//} //}
} }