Voici le programme que vous m'avez demandé aujourd'hui

Dependencies:   mbed-os-example-mbed5-lorawan

Fork of mbed-os-example-mbed5-lorawan by mbed-os-examples

Committer:
Ranyd04
Date:
Fri Jun 08 18:13:32 2018 +0000
Revision:
23:3dfaed332d89
Parent:
20:2055271192d6
Programme que vous m'avez demand?

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 10:b6d8d4e1cc57 1 properties ([[$class: 'ParametersDefinitionProperty', parameterDefinitions: [
mbed_official 20:2055271192d6 2 [$class: 'StringParameterDefinition', name: 'mbed_os_revision', defaultValue: '', description: 'Revision of mbed-os to build. To access mbed-os PR use format "pull/PR number/head"'],
mbed_official 20:2055271192d6 3 [$class: 'BooleanParameterDefinition', name: 'regions_build_test', defaultValue: true, description: 'Test build all available regions']
mbed_official 10:b6d8d4e1cc57 4 ]]])
mbed_official 10:b6d8d4e1cc57 5
mbed_official 10:b6d8d4e1cc57 6 if (env.MBED_OS_REVISION == null) {
mbed_official 10:b6d8d4e1cc57 7 echo 'First run in this branch, using default parameter values'
mbed_official 10:b6d8d4e1cc57 8 env.MBED_OS_REVISION = ''
mbed_official 10:b6d8d4e1cc57 9 }
mbed_official 10:b6d8d4e1cc57 10 if (env.MBED_OS_REVISION == '') {
mbed_official 10:b6d8d4e1cc57 11 echo 'Using mbed OS revision from mbed-os.lib'
mbed_official 10:b6d8d4e1cc57 12 } else {
mbed_official 10:b6d8d4e1cc57 13 echo "Using given mbed OS revision: ${env.MBED_OS_REVISION}"
mbed_official 10:b6d8d4e1cc57 14 if (env.MBED_OS_REVISION.matches('pull/\\d+/head')) {
mbed_official 10:b6d8d4e1cc57 15 echo "Revision is a Pull Request"
mbed_official 10:b6d8d4e1cc57 16 }
mbed_official 10:b6d8d4e1cc57 17 }
mbed_official 10:b6d8d4e1cc57 18
mbed_official 20:2055271192d6 19 // All available regions
mbed_official 20:2055271192d6 20 def regions = [
mbed_official 20:2055271192d6 21 "\"0\"", "\"1\"", "\"2\"", "\"3\"", "\"4\"", "\"5\"", "\"6\"", "\"7\"", "\"8\"", "\"9\"",
mbed_official 20:2055271192d6 22 "\"EU868\"", "\"AS923\"", "\"AU915\"", "\"CN470\"", "\"CN779\"", "\"EU433\"",
mbed_official 20:2055271192d6 23 "\"IN865\"", "\"KR920\"", "\"US915\"", "\"US915_HYBRID\""
mbed_official 20:2055271192d6 24 ]
mbed_official 20:2055271192d6 25
mbed_official 10:b6d8d4e1cc57 26 // Supported targets
mbed_official 10:b6d8d4e1cc57 27 def targets = [
mbed_official 10:b6d8d4e1cc57 28 "K64F",
mbed_official 10:b6d8d4e1cc57 29 "MTB_MTS_XDOT",
mbed_official 10:b6d8d4e1cc57 30 "MTB_MURATA_ABZ",
mbed_official 10:b6d8d4e1cc57 31 "MTS_MDOT_F411RE",
mbed_official 10:b6d8d4e1cc57 32 "DISCO_L072CZ_LRWAN1",
mbed_official 10:b6d8d4e1cc57 33 "MTB_ADV_WISE_1510"
mbed_official 10:b6d8d4e1cc57 34 ]
mbed_official 10:b6d8d4e1cc57 35
mbed_official 10:b6d8d4e1cc57 36 // Map toolchains to compilers
mbed_official 10:b6d8d4e1cc57 37 def toolchains = [
mbed_official 10:b6d8d4e1cc57 38 ARM: "armcc",
mbed_official 10:b6d8d4e1cc57 39 GCC_ARM: "arm-none-eabi-gcc",
mbed_official 10:b6d8d4e1cc57 40 IAR: "iar_arm",
mbed_official 10:b6d8d4e1cc57 41 ARMC6: "arm6"
mbed_official 10:b6d8d4e1cc57 42 ]
mbed_official 10:b6d8d4e1cc57 43
mbed_official 10:b6d8d4e1cc57 44 def stepsForParallel = [:]
mbed_official 10:b6d8d4e1cc57 45
mbed_official 20:2055271192d6 46 // Run correct command based on OS used
mbed_official 20:2055271192d6 47 def execute(cmd) {
mbed_official 20:2055271192d6 48 if(isUnix()) {
mbed_official 20:2055271192d6 49 sh "${cmd}"
mbed_official 20:2055271192d6 50 } else {
mbed_official 20:2055271192d6 51 bat "${cmd}"
mbed_official 20:2055271192d6 52 }
mbed_official 20:2055271192d6 53 }
mbed_official 20:2055271192d6 54
mbed_official 10:b6d8d4e1cc57 55 // Jenkins pipeline does not support map.each, we need to use oldschool for loop
mbed_official 10:b6d8d4e1cc57 56 for (int i = 0; i < targets.size(); i++) {
mbed_official 10:b6d8d4e1cc57 57 for(int j = 0; j < toolchains.size(); j++) {
mbed_official 10:b6d8d4e1cc57 58 def target = targets.get(i)
mbed_official 10:b6d8d4e1cc57 59 def toolchain = toolchains.keySet().asList().get(j)
mbed_official 10:b6d8d4e1cc57 60 def compilerLabel = toolchains.get(toolchain)
mbed_official 10:b6d8d4e1cc57 61
mbed_official 10:b6d8d4e1cc57 62 // Skip unwanted combination
mbed_official 10:b6d8d4e1cc57 63 if (target == "MTB_MURATA_ABZ" && toolchain == "GCC_ARM") {
mbed_official 10:b6d8d4e1cc57 64 continue
mbed_official 10:b6d8d4e1cc57 65 }
mbed_official 10:b6d8d4e1cc57 66 if (target == "DISCO_L072CZ_LRWAN1" && toolchain == "GCC_ARM") {
mbed_official 10:b6d8d4e1cc57 67 continue
mbed_official 10:b6d8d4e1cc57 68 }
mbed_official 10:b6d8d4e1cc57 69
mbed_official 10:b6d8d4e1cc57 70 def stepName = "${target} ${toolchain}"
mbed_official 10:b6d8d4e1cc57 71
mbed_official 10:b6d8d4e1cc57 72 stepsForParallel[stepName] = buildStep(target, compilerLabel, toolchain)
mbed_official 10:b6d8d4e1cc57 73 }
mbed_official 10:b6d8d4e1cc57 74 }
mbed_official 10:b6d8d4e1cc57 75
mbed_official 20:2055271192d6 76 def stepsForRegional = [:]
mbed_official 20:2055271192d6 77
mbed_official 20:2055271192d6 78 if (params.regions_build_test == true) {
mbed_official 20:2055271192d6 79 stepsForRegional["REGION BUILDER"] = build_regions(regions)
mbed_official 20:2055271192d6 80 }
mbed_official 20:2055271192d6 81
mbed_official 10:b6d8d4e1cc57 82 timestamps {
mbed_official 10:b6d8d4e1cc57 83 parallel stepsForParallel
mbed_official 20:2055271192d6 84 parallel stepsForRegional
mbed_official 10:b6d8d4e1cc57 85 }
mbed_official 10:b6d8d4e1cc57 86
mbed_official 10:b6d8d4e1cc57 87 def buildStep(target, compilerLabel, toolchain) {
mbed_official 10:b6d8d4e1cc57 88 return {
mbed_official 10:b6d8d4e1cc57 89 stage ("${target}_${compilerLabel}") {
mbed_official 10:b6d8d4e1cc57 90 node ("${compilerLabel}") {
mbed_official 10:b6d8d4e1cc57 91 deleteDir()
mbed_official 10:b6d8d4e1cc57 92 dir("mbed-os-example-lorawan") {
mbed_official 10:b6d8d4e1cc57 93 checkout scm
mbed_official 20:2055271192d6 94 execute("mbed deploy --protocol ssh")
mbed_official 10:b6d8d4e1cc57 95
mbed_official 10:b6d8d4e1cc57 96 // Set mbed-os to revision received as parameter
mbed_official 10:b6d8d4e1cc57 97 if (env.MBED_OS_REVISION != '') {
mbed_official 10:b6d8d4e1cc57 98 dir("mbed-os") {
mbed_official 10:b6d8d4e1cc57 99 if (env.MBED_OS_REVISION.matches('pull/\\d+/head')) {
mbed_official 10:b6d8d4e1cc57 100 // Use mbed-os PR and switch to branch created
mbed_official 20:2055271192d6 101 execute("git fetch origin ${env.MBED_OS_REVISION}:_PR_")
mbed_official 20:2055271192d6 102 execute("git checkout _PR_")
mbed_official 10:b6d8d4e1cc57 103 } else {
mbed_official 20:2055271192d6 104 execute("git checkout ${env.MBED_OS_REVISION}")
mbed_official 10:b6d8d4e1cc57 105 }
mbed_official 10:b6d8d4e1cc57 106 }
mbed_official 10:b6d8d4e1cc57 107 }
mbed_official 10:b6d8d4e1cc57 108
mbed_official 10:b6d8d4e1cc57 109 // Adjust stack size and crystal values
mbed_official 10:b6d8d4e1cc57 110 if ("${target}" == "DISCO_L072CZ_LRWAN1") {
mbed_official 20:2055271192d6 111 execute("sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x13)/' \
mbed_official 20:2055271192d6 112 mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h")
mbed_official 10:b6d8d4e1cc57 113 }
mbed_official 10:b6d8d4e1cc57 114
mbed_official 10:b6d8d4e1cc57 115 if ("${target}" == "MTB_MURATA_ABZ") {
mbed_official 20:2055271192d6 116 execute("sed -i 's/define symbol __size_heap__ = 0x800;/define symbol __size_heap__ = 0x1000;/' \
mbed_official 20:2055271192d6 117 mbed-os/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/TOOLCHAIN_IAR/stm32l082xZ.icf")
mbed_official 20:2055271192d6 118 execute("sed -i 's/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10)/#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x16)/' \
mbed_official 20:2055271192d6 119 mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h")
mbed_official 10:b6d8d4e1cc57 120 }
mbed_official 10:b6d8d4e1cc57 121
mbed_official 10:b6d8d4e1cc57 122 if ("${target}" == "MTB_MTS_XDOT") {
mbed_official 20:2055271192d6 123 execute("sed -i 's/define symbol __size_heap__ = 0x800;/define symbol __size_heap__ = 0x1800;/' \
mbed_official 20:2055271192d6 124 mbed-os/targets/TARGET_STM/TARGET_STM32L1/TARGET_MTB_MTS_XDOT/device/TOOLCHAIN_IAR/stm32l152xc.icf")
mbed_official 10:b6d8d4e1cc57 125 }
mbed_official 20:2055271192d6 126 execute("mbed compile --build out/${target}_${toolchain}/ -m ${target} -t ${toolchain} -c")
mbed_official 10:b6d8d4e1cc57 127 }
mbed_official 10:b6d8d4e1cc57 128 stash name: "${target}_${toolchain}", includes: '**/mbed-os-example-lorawan.bin'
mbed_official 10:b6d8d4e1cc57 129 archive '**/mbed-os-example-lorawan.bin'
mbed_official 10:b6d8d4e1cc57 130 step([$class: 'WsCleanup'])
mbed_official 10:b6d8d4e1cc57 131 }
mbed_official 10:b6d8d4e1cc57 132 }
mbed_official 10:b6d8d4e1cc57 133 }
mbed_official 10:b6d8d4e1cc57 134 }
mbed_official 20:2055271192d6 135
mbed_official 20:2055271192d6 136 def build_regions(regions) {
mbed_official 20:2055271192d6 137 return {
mbed_official 20:2055271192d6 138 stage ("region_builder_K64F_GCC_ARM") {
mbed_official 20:2055271192d6 139 node ("arm-none-eabi-gcc") {
mbed_official 20:2055271192d6 140 deleteDir()
mbed_official 20:2055271192d6 141 dir("mbed-os-example-lorawan") {
mbed_official 20:2055271192d6 142 checkout scm
mbed_official 20:2055271192d6 143 execute("mbed deploy --protocol ssh")
mbed_official 20:2055271192d6 144
mbed_official 20:2055271192d6 145 if (env.MBED_OS_REVISION != '') {
mbed_official 20:2055271192d6 146 dir("mbed-os") {
mbed_official 20:2055271192d6 147 if (env.MBED_OS_REVISION.matches('pull/\\d+/head')) {
mbed_official 20:2055271192d6 148 execute("git fetch origin ${env.MBED_OS_REVISION}:_PR_")
mbed_official 20:2055271192d6 149 execute("git checkout _PR_")
mbed_official 20:2055271192d6 150 } else {
mbed_official 20:2055271192d6 151 execute("git checkout ${env.MBED_OS_REVISION}")
mbed_official 20:2055271192d6 152 }
mbed_official 20:2055271192d6 153 }
mbed_official 20:2055271192d6 154 }
mbed_official 20:2055271192d6 155 //Initial sed to string format for find & replacing
mbed_official 20:2055271192d6 156 execute("sed -i 's/\"lora.phy\": 0,/\"lora.phy\": \"0\",/' mbed_app.json")
mbed_official 20:2055271192d6 157 //lora.phy 0 build tested above already
mbed_official 20:2055271192d6 158 for (int i = 1; i < regions.size(); i++) {
mbed_official 20:2055271192d6 159 def curr_region = regions.get(i)
mbed_official 20:2055271192d6 160 def prev_region = regions.get(i-1)
mbed_official 20:2055271192d6 161 execute("sed -i 's/\"lora.phy\": ${prev_region},/\"lora.phy\": ${curr_region},/' mbed_app.json")
mbed_official 20:2055271192d6 162 echo "Building region: ${curr_region}"
mbed_official 20:2055271192d6 163 execute("mbed compile -t GCC_ARM -m K64F")
mbed_official 20:2055271192d6 164 }
mbed_official 20:2055271192d6 165 }
mbed_official 20:2055271192d6 166 }
mbed_official 20:2055271192d6 167 }
mbed_official 20:2055271192d6 168 }
mbed_official 20:2055271192d6 169 }