Forest fire prediction using sensors and LoRa communications

Dependencies:   X_NUCLEO_IKS01A2

Revision:
10:b6d8d4e1cc57
Child:
14:b25fefabb634
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Jenkinsfile	Tue Apr 10 16:30:22 2018 +0100
@@ -0,0 +1,146 @@
+properties ([[$class: 'ParametersDefinitionProperty', parameterDefinitions: [
+  [$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"']
+  ]]])
+
+if (env.MBED_OS_REVISION == null) {
+  echo 'First run in this branch, using default parameter values'
+  env.MBED_OS_REVISION = ''
+}
+if (env.MBED_OS_REVISION == '') {
+  echo 'Using mbed OS revision from mbed-os.lib'
+} else {
+  echo "Using given mbed OS revision: ${env.MBED_OS_REVISION}"
+  if (env.MBED_OS_REVISION.matches('pull/\\d+/head')) {
+    echo "Revision is a Pull Request"
+  }
+}
+
+// Supported targets
+def targets = [
+  "K64F",
+  "MTB_MTS_XDOT",
+  "MTB_MURATA_ABZ",
+  "MTS_MDOT_F411RE",
+  "DISCO_L072CZ_LRWAN1",
+  "MTB_ADV_WISE_1510"
+]
+
+// Map toolchains to compilers
+def toolchains = [
+  ARM: "armcc",
+  GCC_ARM: "arm-none-eabi-gcc",
+  IAR: "iar_arm",
+  ARMC6: "arm6"
+]
+
+def stepsForParallel = [:]
+
+// Jenkins pipeline does not support map.each, we need to use oldschool for loop
+for (int i = 0; i < targets.size(); i++) {
+  for(int j = 0; j < toolchains.size(); j++) {
+      def target = targets.get(i)
+      def toolchain = toolchains.keySet().asList().get(j)
+      def compilerLabel = toolchains.get(toolchain)
+
+      // Skip unwanted combination
+      if (target == "MTB_MURATA_ABZ" && toolchain == "GCC_ARM") {
+        continue
+      }
+      if (target == "DISCO_L072CZ_LRWAN1" && toolchain == "GCC_ARM") {
+        continue
+      }
+
+      def stepName = "${target} ${toolchain}"
+
+      stepsForParallel[stepName] = buildStep(target, compilerLabel, toolchain)
+  }
+}
+
+timestamps {
+  parallel stepsForParallel
+}
+
+def buildStep(target, compilerLabel, toolchain) {
+  return {
+    stage ("${target}_${compilerLabel}") {
+      node ("${compilerLabel}") {
+        deleteDir()
+        dir("mbed-os-example-lorawan") {
+          checkout scm
+
+          if (isUnix()) {
+            sh "mbed deploy --protocol ssh"
+          } else {
+            bat "mbed deploy --protocol ssh"
+          }
+          // Set mbed-os to revision received as parameter
+          if (env.MBED_OS_REVISION != '') {
+            dir("mbed-os") {
+              if (env.MBED_OS_REVISION.matches('pull/\\d+/head')) {
+                // Use mbed-os PR and switch to branch created
+                if (isUnix()) {
+                  sh "git fetch origin ${env.MBED_OS_REVISION}:_PR_"
+                  sh "git checkout _PR_"
+                } else {
+                  bat "git fetch origin ${env.MBED_OS_REVISION}:_PR_"
+                  bat "git checkout _PR_"
+                }
+
+              } else {
+                if (isUnix()) {
+                  sh "git checkout ${env.MBED_OS_REVISION}"
+                } else {
+                  bat "git checkout ${env.MBED_OS_REVISION}"
+                }
+              }
+            }
+          }
+
+          // Adjust stack size and crystal values
+          if ("${target}" == "DISCO_L072CZ_LRWAN1") {
+            if (isUnix()) {
+              sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x13U)/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h"
+            } else {
+              bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x13U)/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h"
+            } 
+          }
+
+          if ("${target}" == "MTB_MURATA_ABZ") {
+            if (isUnix()) {
+              sh "sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1000;/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/TOOLCHAIN_IAR/stm32l082xZ.icf"
+              sh "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x16U)/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h"
+            } else {
+              bat "sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1000;/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/TOOLCHAIN_IAR/stm32l082xZ.icf"
+              bat "sed -i 's/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x10U)/#define RCC_HSICALIBRATION_DEFAULT     ((uint32_t)0x16U)/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L0/device/stm32l0xx_hal_rcc.h"
+            } 
+          }
+
+          if ("${target}" == "MTB_MTS_XDOT") {
+            if (isUnix()) {
+              sh "sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1800;/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L1/TARGET_MTB_MTS_XDOT/device/TOOLCHAIN_IAR/stm32l152xc.icf"
+            } else {
+              bat "sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1800;/' \
+              mbed-os/targets/TARGET_STM/TARGET_STM32L1/TARGET_MTB_MTS_XDOT/device/TOOLCHAIN_IAR/stm32l152xc.icf"
+            } 
+          }
+
+          if (isUnix()) {
+            sh "mbed compile --build out/${target}_${toolchain}/ -m ${target} -t ${toolchain} -c"
+          } else {
+            bat "mbed compile --build out/${target}_${toolchain}/ -m ${target} -t ${toolchain} -c"
+          }
+        }
+        stash name: "${target}_${toolchain}", includes: '**/mbed-os-example-lorawan.bin'
+        archive '**/mbed-os-example-lorawan.bin'
+        step([$class: 'WsCleanup'])
+      }
+    }
+  }
+}