1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00

add flatpak test

This commit is contained in:
Jason N. 2024-03-05 16:58:24 -05:00
parent d14ca6c503
commit 1b0319ae83
4 changed files with 52 additions and 20 deletions

View file

@ -208,12 +208,14 @@ jobs:
fi
echo "VM ready for tests at IP ${VM_IP}"
for check in $(ls tests/vm)
do
if [[ -f $check && $check != "README.md" ]]
then
chmod +x $check
./${check}
fi
done
echo "Creating Ansible inventory"
cat << EOF > ansible_inventory
hosts:
vm:
ansible_host: ${VM_IP}
ansible_user: ${VM_USER}
ansible_password: ${VM_PASS}
EOF
make test-vm