diff options
author | Andrej Kozemcak <andrej.kozemcak@pantheon.tech> | 2019-01-18 09:08:28 +0100 |
---|---|---|
committer | Andrej Kozemcak <andrej.kozemcak@pantheon.tech> | 2019-02-21 16:50:43 +0100 |
commit | 93b9c98c441ab571d1493488ab8e54115f9a04d5 (patch) | |
tree | 28544813942cce508e840024cac15bab20d7b30b /build-root/scripts | |
parent | 029bcf3fc1f192fe9b56a0e89a5117c676f69566 (diff) |
Create docker enviroment.
Change-Id: I9ead8f2517f3f461bf3fe629804b8966783eecbd
Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
Diffstat (limited to 'build-root/scripts')
-rwxr-xr-x | build-root/scripts/de_build.sh | 30 | ||||
-rwxr-xr-x | build-root/scripts/docker.sh | 58 |
2 files changed, 88 insertions, 0 deletions
diff --git a/build-root/scripts/de_build.sh b/build-root/scripts/de_build.sh new file mode 100755 index 0000000..812cdcb --- /dev/null +++ b/build-root/scripts/de_build.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Copyright (c) 2019 PANTHEON.tech. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +SWEETCOMB_DIR="/root/src/sweetcomb" + +function build_sweetcomb { + cd /root/src/sweetcomb + yes | make install-dep + make build-scvpp + make build +} + +function main { + build_sweetcomb +} + +main $@ diff --git a/build-root/scripts/docker.sh b/build-root/scripts/docker.sh new file mode 100755 index 0000000..8ed872e --- /dev/null +++ b/build-root/scripts/docker.sh @@ -0,0 +1,58 @@ +#!/bin/bash + +# Copyright (c) 2019 PANTHEON.tech. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +IMAGE="sweetcomb_img" +CONTAINER="sweetcomb" + +function build_enviroment { + FIND=`docker images | grep ${IMAGE}` + + if [ -n "${FIND}" ]; then + return + fi + + docker build -t ${IMAGE} ./src/Docker/Build +} + +function create_container { + docker run -id --privileged --name ${CONTAINER} \ + -v $(pwd)/../sweetcomb:/root/src/sweetcomb ${IMAGE} +} + +function start_container { + FIND=`docker container ls -a | grep ${CONTAINER}` + + if [ -z "${FIND}" ]; then + create_container + else + FIND=`docker container ps | grep ${CONTAINER}` + if [ -z "${FIND}" ]; then + docker start ${CONTAINER} + fi + fi +} + +function build_sweetcomb { + docker exec -it ${CONTAINER} bash -c "/root/src/sweetcomb/build-root/scripts/de_build.sh" +} + +function main { + build_enviroment + start_container + build_sweetcomb +} + +main $@ |