From d02f79c47ee1095ca6ca87cb338042c6288d6463 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 29 Oct 2022 18:14:18 +0200 Subject: [PATCH] CI: test building with a larger pagefile It defaults to 1.8GB, bump it a bit so we can build flang under clang64 which otherwise hits OOM Use C: since we have 95GB free there and only 12GB on D: --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d889501fd9..cbc45c8d0f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,6 +41,14 @@ jobs: .\procdump64.exe -accepteula -ma -i "${{ runner.temp }}/_dumps" .\procdump.exe -accepteula -ma -i "${{ runner.temp }}/_dumps" + - name: Configure Pagefile + if: ${{ matrix.msystem != 'CLANGARM64' }} + uses: al-cheb/configure-pagefile-action@86589fd789a4de3e62ba628dda2cb10027b66d67 + with: + minimum-size: 4GB + maximum-size: 16GB + disk-root: "C:" + - uses: actions/checkout@v3 with: path: temp