From 69516e2f5182e888e1123c0432822e9d6acc5141 Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Fri, 22 Sep 2023 16:23:53 +0200 Subject: [PATCH] Try to fix integration test CI This should add a hosts alias from the internal test server addr to `host.docker.internal`. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d8d836a2..3ff083a05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,6 +102,9 @@ jobs: cache-files-hash: ${{ hashFiles('sentry/requirements**.txt') }} python-version: 3.8 + - name: Do the localhost docker dance + run: echo "$DJANGO_LIVE_TEST_SERVER_ADDRESS host.docker.internal" | sudo tee --append /etc/hosts + - name: Install rust stable toolchain run: rustup toolchain install stable --profile minimal --no-self-update