From f6f73031729425e43b0ed4fc33759655ef25bf9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 2 Oct 2021 12:12:48 +0200 Subject: [PATCH] Add testing for neptune --- test-in-docker.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test-in-docker.sh b/test-in-docker.sh index 897ad1d..ff6249a 100755 --- a/test-in-docker.sh +++ b/test-in-docker.sh @@ -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_tb_hak +test_neptune