From 0920080db5900ee89ea004d64b3c551dd9d93df6 Mon Sep 17 00:00:00 2001 From: Valentin Berkes <16121857+funboarder13920@users.noreply.github.com> Date: Wed, 15 May 2024 18:51:14 +0200 Subject: [PATCH] free space for build, do not stop if a build is failing (#2588) * free space for build, use dockerx, do not stop if a build is failing --------- Co-authored-by: valentin --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec50a345f8..e7017f4a6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,8 +23,18 @@ jobs: strategy: matrix: cuda_version: [11.8.0, 12.1.0] + fail-fast: false permissions: write-all steps: + - name: Maximize build space + uses: easimon/maximize-build-space@master + with: + root-reserve-mb: 512 + swap-size-mb: 10 + remove-dotnet: 'true' + remove-android: 'true' + remove-haskell: 'true' + overprovision-lvm: 'true' - name: Checkout opennmt repo uses: actions/checkout@v4 - name: Login to ghcr