From 1fd5d8ed33923d68122849709a0733587dfee031 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 8 Jan 2024 22:49:20 -0800 Subject: [PATCH] overcommit_memory=1 for redis tests (#3139) Refs #3131 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index beb9c0081..a923d2bf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,7 +159,9 @@ jobs: with: project: firezone-staging - name: Run ${{ matrix.file }} test - run: docker compose -f rust/connection-tests/${{ matrix.file }} up --exit-code-from dialer --abort-on-container-exit + run: | + sudo sysctl -w vm.overcommit_memory=1 + docker compose -f rust/connection-tests/${{ matrix.file }} up --exit-code-from dialer --abort-on-container-exit integration-tests: needs: build-images