From b51059b380609869e62aa71fd96071d4f5c8ed26 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 5 Feb 2024 15:55:02 +0100 Subject: [PATCH] CI: Increase heap memory size for CrateDB to 4 GB This may help in situations where the integration tests are heavy on memory use, and where we observed flaky behaviour on CI. According to GitHub's documentation, standard runners offer 16 GB of RAM, so dedicating 4 GB to CrateDB will not blow up the main memory. -- https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4bafc9b..98334bf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,6 +40,8 @@ jobs: ports: - 4200:4200 - 5432:5432 + env: + CRATE_HEAP_SIZE: 4g name: Python ${{ matrix.python-version }} on OS ${{ matrix.os }} steps: