From 7a992b653194e5fac3318f0a49f88b33c026fe6f Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 15 Sep 2022 22:35:03 +0800 Subject: [PATCH] ci: intend on continue build on error There's a lot of explicitly-marked broken packages for now so we'll just set it to continue on error especially if we extend the steps. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e5b33fa..64e98fd7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,7 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - name: Build custom packages run: nix build -f ./pkgs --impure + continue-on-error: true build-hosts: runs-on: ubuntu-latest @@ -46,3 +47,4 @@ jobs: - name: Build NixOS configurations run: | nix build .#nixosConfigurations.ni.config.system.build.toplevel --impure + continue-on-error: true