From c5c2cbc866fecc75175259bcda02c4c0e00c00ee Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 4 Feb 2025 23:07:15 +0100 Subject: [PATCH] ci: tweak test command slightly Specifically, increase initial GC heap size and allow parallel build jobs. --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ff67b6760..db71dca7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,8 @@ jobs: - run: ./format -c - run: nix-shell --show-trace . -A install - run: yes | home-manager -I home-manager=. uninstall - - run: nix-shell --show-trace --arg enableBig false --pure tests -A run.all + - run: nix-shell -j auto --show-trace --arg enableBig false --pure tests -A run.all # Somebody please help us fix the macos tests. if: matrix.os != 'macos-latest' + env: + GC_INITIAL_HEAP_SIZE: 4294967296