From e179bb44435ca803d1e8513f2c68c0fec1d45443 Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Fri, 22 Sep 2023 16:51:39 +0200 Subject: [PATCH] Fix integration test CI (#1307) 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