796f168c5c
Add additional tox job 'buildimage-lxd' which produces lxd metadata package and rootfs with installs nfs-ganesha, unfs3 and cifs. Co-Authored-By: Alexey Ovchinnikov <aovchinnikov@mirantis.com> Change-Id: Ia5a4701a828aeef93840f9c0a0e1d0bc0f4a5a2e
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
IMAGE=$1
|
|
|
|
if [ "$IMAGE" = "generic" ]; then
|
|
tox -v -e buildimage
|
|
elif [ "$IMAGE" = "lxd" ]; then
|
|
tox -v -e buildimage-lxd
|
|
fi
|