Compare commits

..

2 Commits

Author SHA1 Message Date
fd3c106b29 Add testing for neptune 2021-10-02 12:12:48 +02:00
1405b0621d Update ansible to v4.6.0 2021-10-02 12:10:37 +02:00
2 changed files with 21 additions and 10 deletions

View File

@@ -1,13 +1,12 @@
ansible==2.10.7 ansible==4.6.0
ansible-base==2.10.3 ansible-core==2.11.5
cffi==1.14.4 cffi==1.14.6
cryptography==3.3.2 cryptography==35.0.0
ipaddress==1.0.23 Jinja2==3.0.1
Jinja2==2.11.3
jmespath==0.10.0 jmespath==0.10.0
MarkupSafe==1.1.1 MarkupSafe==2.0.1
packaging==20.7 packaging==21.0
pycparser==2.20 pycparser==2.20
pyparsing==2.4.7 pyparsing==2.4.7
PyYAML==5.4 PyYAML==5.4.1
six==1.15.0 resolvelib==0.5.4

View File

@@ -59,5 +59,17 @@ test_tb_hak() {
' '
} }
test_neptune() {
docker pull docker.io/library/ubuntu:20.04
docker run -ti --rm -v ${tmpdir}/dotfiles.tar.gz:/tmp/dotfiles.tar.gz:ro --hostname neptune docker.io/library/ubuntu:20.04 sh -c '
set -o errexit
cd $(mktemp -d)
tar xf /tmp/dotfiles.tar.gz -C .
ANSIBLE_EXTRA_ARGS="-e manage_services=false" ./install.sh
'
}
test_ares test_ares
test_tb_hak test_tb_hak
test_neptune