| garciadeblas | 17edada | 2016-09-07 15:36:25 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 15 | # |
| 16 | |
| 17 | HERE=$(realpath $(dirname $0)) |
| 18 | OSM_JENKINS=$(dirname $HERE) |
| 19 | . $OSM_JENKINS/common/all_funcs |
| 20 | |
| 21 | # SET YOU MDG repository name here |
| 22 | export OSM_MDG=RO |
| 23 | OSM_load_config |
| 24 | |
| 25 | |
| 26 | # Here is an example for how to handle an incremental build |
| 27 | if [ -d $OSM_MDG ]; then |
| 28 | INFO "reusing existing workspace" |
| 29 | cd $OSM_MDG |
| garciadeblas | dc5ae19 | 2016-09-08 10:19:24 +0200 | [diff] [blame] | 30 | git checkout master #to make sure that we are in the right branch before pulling the code |
| garciadeblas | bcc2bc4 | 2016-08-31 15:30:45 +0200 | [diff] [blame] | 31 | git pull |
| garciadeblas | dc5ae19 | 2016-09-08 10:19:24 +0200 | [diff] [blame] | 32 | # TO DO: probably it makes sense to fetch all branches, but this requires creating the branches locally |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 33 | else |
| 34 | INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG" |
| 35 | git clone $OSM_GIT_URL/$OSM_MDG |
| 36 | cd $OSM_MDG |
| 37 | fi |
| garciadeblas | dc5ae19 | 2016-09-08 10:19:24 +0200 | [diff] [blame] | 38 | |
| garciadeblas | a8cbb91 | 2016-08-31 14:47:41 +0200 | [diff] [blame] | 39 | if [ $# -gt 0 ]; then |
| garciadeblas | dc5ae19 | 2016-09-08 10:19:24 +0200 | [diff] [blame] | 40 | INFO "Code to compile: gerrit refspec '$1', commit-id: '$2'" |
| 41 | FATAL "Testing" |
| 42 | #git fetch origin $1 || FATAL "git fetch origin '$1' didn't work" |
| 43 | #git checkout -f $2 || FATAL "git checkout -f '$2' didn't work" |
| 44 | else |
| 45 | INFO "Code to compile: master" |
| 46 | git checkout master |
| garciadeblas | a8cbb91 | 2016-08-31 14:47:41 +0200 | [diff] [blame] | 47 | fi |
| 48 | |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 49 | INFO "starting build" |
| 50 | |
| 51 | ### for start_build |
| 52 | ### put your commands here to |
| 53 | ### build, test and produce coverage reports |
| 54 | |
| garciadeblas | a8cbb91 | 2016-08-31 14:47:41 +0200 | [diff] [blame] | 55 | rm *.pyc |
| 56 | python -m py_compile *.py |
| 57 | RC=$? |
| garciadeblas | dc5ae19 | 2016-09-08 10:19:24 +0200 | [diff] [blame] | 58 | git checkout master #Cleaning the environment. It's also done at the beginning, but it's done just in case. |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 59 | |
| 60 | INFO "done, RC=$RC" |
| 61 | exit $RC |
| 62 | |
| 63 | |