Fix bugs and pin osm bundles
[osm/devops.git] / installers / charm / build.sh
index 17eea94..b5c0c0b 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/bash
 # Copyright 2020 Canonical Ltd.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -11,8 +12,7 @@
 #     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 ..
 }
@@ -22,4 +22,16 @@ build 'mon-k8s'
 build 'nbi-k8s'
 build 'pol-k8s'
 build 'ro-k8s'
-build 'ui-k8s'
+# build 'ui-k8s'
+
+charms="nbi pla pol mon lcm ng-ui keystone"
+if [ -z `which charmcraft` ]; then
+    sudo snap install charmcraft --beta
+fi
+
+for charm_directory in $charms; do
+    echo "Building charm $charm_directory..."
+    cd $charm_directory
+    charmcraft build
+    cd ..
+done