Add charmcraft.yaml debug_mode to charmed-osm
[osm/devops.git] / installers / charm / build.sh
index edcad53..65dd87d 100755 (executable)
 #     limitations under the License.
 
 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="nbi pla pol mon lcm ng-ui keystone"
-charms="nbi"
+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 --beta
+    sudo snap install charmcraft --edge
 fi
 
 for charm_directory in $charms; do
-    echo "Building charm $charm_directory..."
-    cd $charm_directory
-    charmcraft build
-    cd ..
+    build $charm_directory &
 done
+wait
\ No newline at end of file