Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: disable haddock step #273

Merged
merged 1 commit into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ let defSteps = haskellCi.defaultCabalSteps
in haskellCi.generalCi
( haskellCi.withNix
( defSteps
with docStep = None haskellCi.BuildStep
with extraSteps.pre
=
defSteps.extraSteps.pre
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.dhall.frozen
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ let defSteps = haskellCi.defaultCabalSteps
in haskellCi.generalCi
( haskellCi.withNix
( defSteps
with docStep = None haskellCi.BuildStep
with extraSteps.pre
=
defSteps.extraSteps.pre
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ cd "$( dirname "${BASH_SOURCE[0]}" )"
which dhall || cabal install dhall
which dhall-to-yaml || cabal install dhall-yaml

echo "dhall format-ing ci.dhall"
dhall format ci.dhall
echo "cp haskellCi.dhall -> ci.dhall.frozen"
cp ci.dhall ci.dhall.frozen
echo "dhall freez-ing ci.dhall.frozen"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ jobs:
run: "cabal build all --enable-tests --enable-benchmarks"
- name: test all
run: "cabal test all --enable-tests"
- name: haddock all
run: cabal haddock all
- name: Build with Nix
run: "nix-build --argstr compiler $(echo ghc${{ matrix.ghc }} | tr -d '.')"
strategy:
Expand Down