From 2a1aebf66f52270e3f1ace7daf1c5f2841b26feb Mon Sep 17 00:00:00 2001 From: Murray Stevenson <50844517+murraystevenson@users.noreply.github.com> Date: Fri, 21 Jun 2024 17:14:04 -0700 Subject: [PATCH] CI : Increase Windows SCons cache The existing limit of 400MB wasn't enough to cache a full build. While this new limit is double the previous, in testing, the resulting compressed Windows build cache is only about 20MB larger than the compressed Linux release build cache (~100MB vs ~80MB). --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bbbb965eed5..089b79b25e2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,7 +65,7 @@ jobs: containerImage: testRunner: Invoke-Expression testArguments: -excludedCategories performance GafferTest GafferVDBTest GafferUSDTest GafferSceneTest GafferDispatchTest GafferOSLTest GafferImageTest GafferUITest GafferImageUITest GafferSceneUITest GafferDispatchUITest GafferOSLUITest GafferUSDUITest GafferVDBUITest GafferDelightUITest - sconsCacheMegabytes: 400 + sconsCacheMegabytes: 800 runs-on: ${{ matrix.os }}