From 99d2050ac1dbe4285546c6868e428daf57e775b4 Mon Sep 17 00:00:00 2001 From: Alan Kyffin Date: Fri, 15 Sep 2023 09:36:13 +0100 Subject: [PATCH] Switch playbook in CI - for testing previous commit --- .github/workflows/ci-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 3baba16..3d90bb1 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -26,7 +26,7 @@ jobs: # Prep for running the playbook - name: Create hosts file - run: echo -e "[hosts_all]\nlocalhost ansible_connection=local" > hosts + run: echo -e "[icatdb_minimal_hosts]\nlocalhost ansible_connection=local" > hosts - name: Prepare vault pass run: echo -e "icattravispw" > vault_pass.txt - name: Move vault to directory it'll get detected by Ansible @@ -47,5 +47,5 @@ jobs: - name: Run ICAT Ansible Playbook run: | - ansible-playbook hosts_all.yml -i hosts --vault-password-file vault_pass.txt -e java_version=${{ matrix.java_version }} -vv + ansible-playbook icatdb_minimal_hosts.yml -i hosts --vault-password-file vault_pass.txt -e java_version=${{ matrix.java_version }} -vv