Skip to content

Commit

Permalink
Merge pull request #273 from haskell-nix/srk/ci
Browse files Browse the repository at this point in the history
ci: disable haddock step
  • Loading branch information
sorki committed Dec 2, 2023
2 parents 70eb0d3 + 15f77e8 commit 5666b68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
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

0 comments on commit 5666b68

Please sign in to comment.