From f967477ba0f81a9674b99c436bb12a4652d60ec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?p=C3=BDrus?= Date: Tue, 13 May 2025 17:30:40 +0200 Subject: [PATCH 1/3] add a link to track the /etc/hosts issue --- action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yaml b/action.yaml index 1037952..af425f7 100644 --- a/action.yaml +++ b/action.yaml @@ -32,6 +32,7 @@ runs: - name: Workaround for RabbitMQ run: | # fix freaky leading "-e" in /etc/hosts + # see https://github.com/actions/runner-images/issues/12192 sudo sed -i 's/^-e \+//g' /etc/hosts sudo apt-get purge -y esl-erlang || true sudo apt-get install -y erlang rabbitmq-server # if rabbitmq-server is not installed, tests must be stopped From eecac7f30f3b3e3678f9280992bf5366fab4200e Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 19 May 2025 16:06:07 +0100 Subject: [PATCH 2/3] Dump local.conf This is helpful if you are attempting to reproduce builds locally. Given we use well-known usernames and passwords, this should not expose anything secret. Signed-off-by: Stephen Finucane --- action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yaml b/action.yaml index af425f7..8ef1d50 100644 --- a/action.yaml +++ b/action.yaml @@ -81,6 +81,11 @@ runs: EOF_CONF_OVERRIDES working-directory: ./devstack shell: bash + - name: Dump local.conf + run: | + cat local.conf + working-directory: ./devstack + shell: bash - name: Run devstack env: FORCE: ${{ inputs.force }} From 6a7f8e4a4e0aec851e73aba1f4a485079e26b951 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 19 May 2025 16:14:02 +0100 Subject: [PATCH 3/3] Stop setting USE_PYTHON3 This was removed from DevStack in the 2024.2 cycle [1], but was unused since way back in Victoria [2]. [1] https://github.com/openstack/devstack/commit/5412dbfe7b797149f1f68100de8003b1876398fe [2] https://github.com/openstack/devstack/commit/d7a82f41e469fc51fb021184c1fa6c98da428411 Signed-off-by: Stephen Finucane --- action.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yaml b/action.yaml index 8ef1d50..adc53c9 100644 --- a/action.yaml +++ b/action.yaml @@ -61,7 +61,6 @@ runs: SERVICE_PASSWORD=secret SWIFT_HASH=1234123412341234 LOGFILE=${{ inputs.log_dir }}/devstack.log - USE_PYTHON3=True INSTALL_TEMPEST=False GIT_BASE=https://github.com EOF