File tree 2 files changed +16
-6
lines changed
2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 30
30
# # To be experimented with again in the future to see if things have
31
31
# # gotten better.
32
32
# #
33
+ # # We use `v1-install` rather than `install` as Agda as a community
34
+ # # hasn't figured out how to manage dependencies with the new local
35
+ # # style builds (see agda/agda#4627 for details). Once this is resolved
36
+ # # we should upgrade to `install`.
37
+ # #
33
38
# # The AGDA variable specifies the command to use to build the library.
34
39
# # It currently passes the flag `-Werror` to ensure maximal compliance
35
40
# # with e.g. not relying on deprecated definitions.
43
48
env :
44
49
GHC_VERSION : 8.6.5
45
50
CABAL_VERSION : 3.2.0.0
46
- CABAL_INSTALL : cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'
51
+ CABAL_INSTALL : cabal v1-install --ghc-options='-O1 +RTS -M6G -RTS'
52
+ # CABAL_INSTALL: cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'
47
53
AGDA : agda -Werror +RTS -M3.5G -H3.5G -A128M -RTS -i. -i src/
48
54
49
55
jobs :
@@ -146,6 +152,10 @@ jobs:
146
152
${{ env.AGDA }} --safe EverythingSafe.agda
147
153
${{ env.AGDA }} index.agda
148
154
155
+ # #######################################################################
156
+ # # DOC DEPLOYMENT
157
+ # #######################################################################
158
+
149
159
# We start by retrieving the currently deployed docs
150
160
# We remove the content that is in the directory we are going to populate
151
161
# so that stale files corresponding to deleted modules do not accumulate.
Original file line number Diff line number Diff line change @@ -17,16 +17,16 @@ executable GenerateEverything
17
17
main-is : GenerateEverything.hs
18
18
default-language : Haskell2010
19
19
default-extensions : PatternGuards, PatternSynonyms
20
- build-depends : base >= 4.9.0.0 && < 4.16
20
+ build-depends : base >= 4.9.0.0 && < 4.17
21
21
, directory >= 1.0.0.0 && < 1.4
22
22
, filemanip >= 0.3.6.2 && < 0.4
23
- , filepath >= 1.4.1.0 && < 1.5
24
- , mtl >= 2.2.2 && < 2.3
23
+ , filepath >= 1.4.1.0 && < 1.5
24
+ , mtl >= 2.2.2 && < 2.3
25
25
26
26
executable AllNonAsciiChars
27
27
hs-source-dirs : .
28
28
main-is : AllNonAsciiChars.hs
29
29
default-language : Haskell2010
30
- build-depends : base >= 4.9.0.0 && < 4.16
30
+ build-depends : base >= 4.9.0.0 && < 4.17
31
31
, filemanip >= 0.3.6.2 && < 0.4
32
- , text >= 1.2.3.0 && < 1.3
32
+ , text >= 1.2.3.0 && < 1.3
You can’t perform that action at this time.
0 commit comments