| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright 2016 RIFT.IO Inc |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # script to start a build. This is run inside a container |
| 17 | # |
| 18 | # 24 June 2016 -- Jeremy Mordkoff -- Genesis |
| 19 | |
| 20 | HERE=$(realpath $(dirname $0)) |
| 21 | OSM_JENKINS=$(dirname $HERE) |
| 22 | . $OSM_JENKINS/common/all_funcs |
| 23 | export OSM_MDG=riftware |
| 24 | OSM_load_config |
| 25 | |
| 26 | |
| 27 | if [ -d riftware ]; then |
| 28 | INFO "reusing existing workspace" |
| 29 | cd riftware |
| 30 | git pull |
| 31 | else |
| 32 | INFO "cloning MDG riftware from $OSM_GIT_URL/riftware" |
| 33 | git clone $OSM_GIT_URL/riftware |
| 34 | cd riftware |
| 35 | INFO "install pre-requisites" |
| Jeremy Mordkoff | 5cf3216 | 2016-07-21 16:32:25 -0400 | [diff] [blame^] | 36 | bash ./scripts/vm_image/mkcontainer --modes build |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 37 | fi |
| 38 | |
| Jeremy Mordkoff | 1921538 | 2016-07-06 18:17:46 -0400 | [diff] [blame] | 39 | INFO "no build script yet" |
| 40 | RC=1 |
| 41 | |
| 42 | INFO "done RC = $RC" |
| 43 | exit $RC |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 44 | |
| 45 | |
| 46 | |