X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Fcharm%2Fbuild.sh;h=459da1328ac3277a1066c5563b59b83d83e0372a;hb=refs%2Fchanges%2F95%2F11695%2F6;hp=17eea9485366e565f13db2a5a2e5220b51461a2d;hpb=47cd3b277310d5d6fef0067f220e849bebff35b4;p=osm%2Fdevops.git diff --git a/installers/charm/build.sh b/installers/charm/build.sh index 17eea948..459da132 100755 --- a/installers/charm/build.sh +++ b/installers/charm/build.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Copyright 2020 Canonical Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -11,15 +12,17 @@ # 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. -#!/bin/bash -set -eux + function build() { - cd $1 && tox -e build && cd .. + cd $1 && tox -qe build && cd .. } -build 'lcm-k8s' -build 'mon-k8s' -build 'nbi-k8s' -build 'pol-k8s' -build 'ro-k8s' -build 'ui-k8s' +charms="ro nbi pla pol mon lcm ng-ui grafana prometheus mongodb-exporter kafka-exporter mysqld-exporter" +if [ -z `which charmcraft` ]; then + sudo snap install charmcraft --classic +fi + +for charm_directory in $charms; do + build $charm_directory +done +wait \ No newline at end of file