From 9a6f5bc3be4f06ea0aea319f7b58a614a52f2963 Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Tue, 14 Dec 2021 11:07:34 +0200 Subject: [PATCH] CI: Nix: make Nix dev env passing optional This makes Nix dev env configuration in HLS development a non-blocking process. --- .github/workflows/nix.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 09d297d3a9..7cb214679e 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -35,6 +35,7 @@ jobs: develop: if: needs.pre_job.outputs.should_skip_develop != 'true' needs: pre_job + continue-on-error: true runs-on: ${{ matrix.os }} strategy: @@ -68,6 +69,7 @@ jobs: build: needs: pre_job runs-on: ${{ matrix.os }} + continue-on-error: true env: HAS_TOKEN: ${{ secrets.HLS_CACHIX_AUTH_TOKEN != '' }} if: (needs.pre_job.outputs.should_skip_build != 'true' && needs.pre_job.outputs.should_skip_pr != 'true') || (github.repository_owner == 'haskell' && github.ref == 'refs/heads/master')