Skip to content

Commit

Permalink
Disable hoogle when running CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-iohk committed Jan 18, 2022
1 parent 99fc906 commit 241bdbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -30,7 +30,7 @@ jobs:
restore-keys: |
${{ runner.os }}-key
- run: nix-shell --run 'build-ci.sh'
- run: nix-shell -A ci --run 'build-ci.sh'
# https://giters.com/gfx/example-github-actions-with-tty
# The default shell does not allocate a TTY which breaks some tests
shell: 'script -q -e -c "bash {0}"'
Expand Down
5 changes: 4 additions & 1 deletion shell.nix
Expand Up @@ -93,4 +93,7 @@ let
};

in
haskellNixShell // { cabalOnly = cabalShell; }
haskellNixShell // {
cabalOnly = cabalShell;
ci = haskellNixShell { withHoogle = false; }
}

0 comments on commit 241bdbc

Please sign in to comment.