File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 49
49
- if : matrix.ghc == '8.10.7' && runner.os == 'Linux'
50
50
name : Build using stack
51
51
run : stack build
52
+
53
+ haskell_post_job :
54
+ runs-on : ubuntu-latest
55
+ needs : [ build ]
56
+ steps :
57
+ - run : |
58
+ echo "jobs info: ${{ toJSON(needs) }}"
59
+ - if : contains(needs.*.result, 'failure')
60
+ run : exit 1
61
+ - if : contains(needs.*.result, 'cancelled') && needs.pre_job.outputs.should_skip != 'true'
62
+ run : exit 1
Original file line number Diff line number Diff line change 19
19
with :
20
20
nix_path : nixpkgs=channel:nixos-unstable
21
21
- run : nix-shell --run "cabal update && cabal build all"
22
+ nix_post_job :
23
+ runs-on : ubuntu-latest
24
+ needs : [ nix ]
25
+ steps :
26
+ - run : |
27
+ echo "jobs info: ${{ toJSON(needs) }}"
28
+ - if : contains(needs.*.result, 'failure')
29
+ run : exit 1
30
+ - if : contains(needs.*.result, 'cancelled') && needs.pre_job.outputs.should_skip != 'true'
31
+ run : exit 1
Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ tests: True
10
10
benchmarks : True
11
11
test-show-details : direct
12
12
haddock-quickjump : True
13
+
14
+ -- https://github.com/TomMD/entropy/issues/75
15
+ constraints : entropy < 0.4.1.9
You can’t perform that action at this time.
0 commit comments