Skip to content

Commit

Permalink
Merge #4865
Browse files Browse the repository at this point in the history
4865: Fix recursion in flake inputs. r=andreabedini a=andreabedini

hydra-eval-jobs seems to have trouble evaluating this flake.

  error: cannot update flake input 'cardano-node-workbench/membench' in pure mode

Simplifying the recursion in the flake inputs seems to help.

Fixes #4525

Co-authored-by: Andrea Bedini <andrea.bedini@tweag.io>
  • Loading branch information
iohk-bors[bot] and andreabedini committed Feb 10, 2023
2 parents b22aae8 + 623c748 commit 9de2ba8
Show file tree
Hide file tree
Showing 6 changed files with 4,775 additions and 17,795 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/check-cabal-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Workaround runner image issue
if: runner.os == 'Linux'
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup

- name: Install Haskell
uses: input-output-hk/setup-haskell@v1
id: setup-haskell
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
SECP256K1_REF: ac83be33d0956faf6b7f61a60ab524ef7d6a473a

steps:
- name: Workaround runner image issue
if: runner.os == 'Linux'
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup

- name: Install Haskell
uses: input-output-hk/setup-haskell@v1
id: setup-haskell
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
SECP256K1_REF: ac83be33d0956faf6b7f61a60ab524ef7d6a473a

steps:
- name: Workaround runner image issue
if: runner.os == 'Linux'
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup

- name: Install Haskell
uses: input-output-hk/setup-haskell@v1
id: setup-haskell
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/stylish-haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
cardano-submit-api
steps:
- name: Workaround runner image issue
if: runner.os == 'Linux'
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup

- name: Install Haskell
uses: input-output-hk/setup-haskell@v1
id: setup-haskell
Expand Down

0 comments on commit 9de2ba8

Please sign in to comment.