From a02ea934a5aa8326945a7ce941ec8d7eba458aac Mon Sep 17 00:00:00 2001 From: Mikolaj Konarski <mikolaj.konarski@gmail.com> Date: Fri, 21 Oct 2022 18:56:25 +0200 Subject: [PATCH] Work around git problem https://bugs.launchpad.net/ubuntu/+source/git/+bug/1993586 --- .github/workflows/validate.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 2a79790a7b..65a676c528 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -74,6 +74,10 @@ jobs: key: ${{ runner.os }}-${{ matrix.ghc }}-20220419-${{ github.sha }} restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-20220419- + - name: Work around git problem https://bugs.launchpad.net/ubuntu/+source/git/+bug/1993586 (cabal PR #8546) + run: | + git config --global protocol.file.allow always + # The '+exe' constraint below is important, otherwise cabal-install # might decide to build the library but not the executable which is # what we need. -- GitLab