X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Fcharm%2Fbuild.sh;h=b5c0c0b942c7e0b4146482f2be6743c99b6c4eb6;hb=e4231d7d31f6286b5c48db0f84bfd2f1f1ec80c3;hp=1c017ba1963dc9e2b13840b6671143c4c01c9e8a;hpb=126a443a5bd8c7245234a79f530bfa54222abb21;p=osm%2Fdevops.git diff --git a/installers/charm/build.sh b/installers/charm/build.sh index 1c017ba1..b5c0c0b9 100755 --- a/installers/charm/build.sh +++ b/installers/charm/build.sh @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -eux - function build() { cd $1 && tox -e build && cd .. } @@ -24,7 +22,16 @@ build 'mon-k8s' build 'nbi-k8s' build 'pol-k8s' build 'ro-k8s' -build 'ui-k8s' -build 'keystone' -build 'ng-ui' -build 'pla' \ No newline at end of file +# 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