Add charmcraft.yaml debug_mode to charmed-osm
[osm/devops.git] / installers / charm / build.sh
index 17eea94..65dd87d 100755 (executable)
@@ -1,3 +1,4 @@
+#!/bin/bash
 # Copyright 2020 Canonical Ltd.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 #     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 keystone grafana prometheus mariadb-k8s mongodb-k8s zookeeper-k8s kafka-k8s mongodb-exporter kafka-exporter mysqld-exporter"
+if [ -z `which charmcraft` ]; then
+    sudo snap install charmcraft --edge
+fi
+
+for charm_directory in $charms; do
+    build $charm_directory &
+done
+wait
\ No newline at end of file