From ec34b3365c5a6c1ab7cd1924fc10c93a4c364f0d Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Tue, 13 Feb 2024 07:35:38 -0600 Subject: [PATCH] maximize first --- .github/actions/setup/action.yml | 22 ---------------------- .github/workflows/ci.yml | 10 ++++++++++ 2 files changed, 10 insertions(+), 22 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index dc59daf56..a4756ff70 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -11,28 +11,6 @@ outputs: runs: using: "composite" steps: - - name: Show disk info - run: df -h - shell: bash - - name: Show docker image info - run: docker image ls --all - shell: bash - - name: Maximize build space - uses: easimon/maximize-build-space@master - with: - root-reserve-mb: 512 - swap-size-mb: 1024 - remove-dotnet: 'true' - remove-android: 'true' - remove-haskell: 'true' - remove-codeql: 'true' - remove-docker-images: 'true' - - name: Show disk info - run: df -h - shell: bash - - name: Show docker image info - run: docker image ls --all - shell: bash - id: lowercaseRepo uses: ASzc/change-string-case-action@v5 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37950d7e3..974a9cb61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,16 @@ jobs: steps: - name: Show disk info run: df -h + - name: Maximize build space + uses: easimon/maximize-build-space@master + with: + root-reserve-mb: 512 + swap-size-mb: 1024 + remove-dotnet: 'true' + remove-android: 'true' + remove-haskell: 'true' + remove-codeql: 'true' + remove-docker-images: 'true' - name: Check out code uses: actions/checkout@v4 - name: Set up QEMU and Buildx