Skip to content

Commit 85ed092

Browse files
committed
Enable rest of recipes
1 parent bd40d46 commit 85ed092

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

.travis.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ install:
7272
- rm -fv cabal.project cabal.project.local
7373
- "if [ $HCNUMVER -ge 70800 ]; then sed -i.bak 's/-- ghc-options:.*/ghc-options: -j2/' ${HOME}/.cabal/config; fi"
7474
- grep -Ev -- '^\s*--' ${HOME}/.cabal/config | grep -Ev '^\s*$'
75-
- "printf 'packages: \"servant\" \"servant-client\" \"servant-client-core\" \"servant-docs\" \"servant-foreign\" \"servant-server\" \"doc/tutorial\" \"doc/cookbook/basic-auth\" \"doc/cookbook/db-postgres-pool\" \"doc/cookbook/db-sqlite-simple\" \"doc/cookbook/https\" \"doc/cookbook/pagination\" \"doc/cookbook/structuring-apis\" \"doc/cookbook/using-custom-monad\"\\n' > cabal.project"
75+
- "printf 'packages: \"servant\" \"servant-client\" \"servant-client-core\" \"servant-docs\" \"servant-foreign\" \"servant-server\" \"doc/tutorial\" \"doc/cookbook/basic-auth\" \"doc/cookbook/db-postgres-pool\" \"doc/cookbook/db-sqlite-simple\" \"doc/cookbook/file-upload\" \"doc/cookbook/https\" \"doc/cookbook/jwt-and-basic-auth\" \"doc/cookbook/pagination\" \"doc/cookbook/structuring-apis\" \"doc/cookbook/using-custom-monad\"\\n' > cabal.project"
7676
- "echo 'constraints: foundation >=0.0.14,memory <0.14.12 || >0.14.12' >> cabal.project"
77-
- "echo 'allow-newer: servant-auth-server:http-types,servant-auth-server:servant-server, http-media:base, servant-js:servant,servant-pagination:servant,servant-pagination:servant-server' >> cabal.project"
77+
- "echo 'allow-newer: servant-auth-server:http-types,servant-auth-server:servant-server, servant-pagination:servant,servant-pagination:servant-server' >> cabal.project"
7878
- touch cabal.project.local
7979
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi"
8080
- cat cabal.project || true
@@ -109,9 +109,15 @@ install:
109109
- if [ -f "doc/cookbook/db-sqlite-simple/configure.ac" ]; then
110110
(cd "doc/cookbook/db-sqlite-simple" && autoreconf -i);
111111
fi
112+
- if [ -f "doc/cookbook/file-upload/configure.ac" ]; then
113+
(cd "doc/cookbook/file-upload" && autoreconf -i);
114+
fi
112115
- if [ -f "doc/cookbook/https/configure.ac" ]; then
113116
(cd "doc/cookbook/https" && autoreconf -i);
114117
fi
118+
- if [ -f "doc/cookbook/jwt-and-basic-auth/configure.ac" ]; then
119+
(cd "doc/cookbook/jwt-and-basic-auth" && autoreconf -i);
120+
fi
115121
- if [ -f "doc/cookbook/pagination/configure.ac" ]; then
116122
(cd "doc/cookbook/pagination" && autoreconf -i);
117123
fi
@@ -122,7 +128,7 @@ install:
122128
(cd "doc/cookbook/using-custom-monad" && autoreconf -i);
123129
fi
124130
- rm -f cabal.project.freeze
125-
- rm -rf .ghc.environment.* "servant"/dist "servant-client"/dist "servant-client-core"/dist "servant-docs"/dist "servant-foreign"/dist "servant-server"/dist "doc/tutorial"/dist "doc/cookbook/basic-auth"/dist "doc/cookbook/db-postgres-pool"/dist "doc/cookbook/db-sqlite-simple"/dist "doc/cookbook/https"/dist "doc/cookbook/pagination"/dist "doc/cookbook/structuring-apis"/dist "doc/cookbook/using-custom-monad"/dist
131+
- rm -rf .ghc.environment.* "servant"/dist "servant-client"/dist "servant-client-core"/dist "servant-docs"/dist "servant-foreign"/dist "servant-server"/dist "doc/tutorial"/dist "doc/cookbook/basic-auth"/dist "doc/cookbook/db-postgres-pool"/dist "doc/cookbook/db-sqlite-simple"/dist "doc/cookbook/file-upload"/dist "doc/cookbook/https"/dist "doc/cookbook/jwt-and-basic-auth"/dist "doc/cookbook/pagination"/dist "doc/cookbook/structuring-apis"/dist "doc/cookbook/using-custom-monad"/dist
126132
- DISTDIR=$(mktemp -d /tmp/dist-test.XXXX)
127133

128134
# Here starts the actual work to be performed for the package under test;
@@ -140,18 +146,20 @@ script:
140146
- (cd "doc/cookbook/basic-auth" && cabal sdist)
141147
- (cd "doc/cookbook/db-postgres-pool" && cabal sdist)
142148
- (cd "doc/cookbook/db-sqlite-simple" && cabal sdist)
149+
- (cd "doc/cookbook/file-upload" && cabal sdist)
143150
- (cd "doc/cookbook/https" && cabal sdist)
151+
- (cd "doc/cookbook/jwt-and-basic-auth" && cabal sdist)
144152
- (cd "doc/cookbook/pagination" && cabal sdist)
145153
- (cd "doc/cookbook/structuring-apis" && cabal sdist)
146154
- (cd "doc/cookbook/using-custom-monad" && cabal sdist)
147155
- echo -en 'travis_fold:end:sdist\\r'
148156
- echo Unpacking... && echo -en 'travis_fold:start:unpack\\r'
149-
- mv "servant"/dist/servant-*.tar.gz "servant-client"/dist/servant-client-*.tar.gz "servant-client-core"/dist/servant-client-core-*.tar.gz "servant-docs"/dist/servant-docs-*.tar.gz "servant-foreign"/dist/servant-foreign-*.tar.gz "servant-server"/dist/servant-server-*.tar.gz "doc/tutorial"/dist/tutorial-*.tar.gz "doc/cookbook/basic-auth"/dist/cookbook-basic-auth-*.tar.gz "doc/cookbook/db-postgres-pool"/dist/cookbook-db-postgres-pool-*.tar.gz "doc/cookbook/db-sqlite-simple"/dist/cookbook-db-sqlite-simple-*.tar.gz "doc/cookbook/https"/dist/cookbook-https-*.tar.gz "doc/cookbook/pagination"/dist/cookbook-pagination-*.tar.gz "doc/cookbook/structuring-apis"/dist/cookbook-structuring-apis-*.tar.gz "doc/cookbook/using-custom-monad"/dist/cookbook-using-custom-monad-*.tar.gz ${DISTDIR}/
157+
- mv "servant"/dist/servant-*.tar.gz "servant-client"/dist/servant-client-*.tar.gz "servant-client-core"/dist/servant-client-core-*.tar.gz "servant-docs"/dist/servant-docs-*.tar.gz "servant-foreign"/dist/servant-foreign-*.tar.gz "servant-server"/dist/servant-server-*.tar.gz "doc/tutorial"/dist/tutorial-*.tar.gz "doc/cookbook/basic-auth"/dist/cookbook-basic-auth-*.tar.gz "doc/cookbook/db-postgres-pool"/dist/cookbook-db-postgres-pool-*.tar.gz "doc/cookbook/db-sqlite-simple"/dist/cookbook-db-sqlite-simple-*.tar.gz "doc/cookbook/file-upload"/dist/cookbook-file-upload-*.tar.gz "doc/cookbook/https"/dist/cookbook-https-*.tar.gz "doc/cookbook/jwt-and-basic-auth"/dist/cookbook-jwt-and-basic-auth-*.tar.gz "doc/cookbook/pagination"/dist/cookbook-pagination-*.tar.gz "doc/cookbook/structuring-apis"/dist/cookbook-structuring-apis-*.tar.gz "doc/cookbook/using-custom-monad"/dist/cookbook-using-custom-monad-*.tar.gz ${DISTDIR}/
150158
- cd ${DISTDIR} || false
151159
- find . -maxdepth 1 -name '*.tar.gz' -exec tar -xvf '{}' \;
152-
- "printf 'packages: servant-*/*.cabal servant-client-*/*.cabal servant-client-core-*/*.cabal servant-docs-*/*.cabal servant-foreign-*/*.cabal servant-server-*/*.cabal tutorial-*/*.cabal cookbook-basic-auth-*/*.cabal cookbook-db-postgres-pool-*/*.cabal cookbook-db-sqlite-simple-*/*.cabal cookbook-https-*/*.cabal cookbook-pagination-*/*.cabal cookbook-structuring-apis-*/*.cabal cookbook-using-custom-monad-*/*.cabal\\n' > cabal.project"
160+
- "printf 'packages: servant-*/*.cabal servant-client-*/*.cabal servant-client-core-*/*.cabal servant-docs-*/*.cabal servant-foreign-*/*.cabal servant-server-*/*.cabal tutorial-*/*.cabal cookbook-basic-auth-*/*.cabal cookbook-db-postgres-pool-*/*.cabal cookbook-db-sqlite-simple-*/*.cabal cookbook-file-upload-*/*.cabal cookbook-https-*/*.cabal cookbook-jwt-and-basic-auth-*/*.cabal cookbook-pagination-*/*.cabal cookbook-structuring-apis-*/*.cabal cookbook-using-custom-monad-*/*.cabal\\n' > cabal.project"
153161
- "echo 'constraints: foundation >=0.0.14,memory <0.14.12 || >0.14.12' >> cabal.project"
154-
- "echo 'allow-newer: servant-auth-server:http-types,servant-auth-server:servant-server, http-media:base, servant-js:servant,servant-pagination:servant,servant-pagination:servant-server' >> cabal.project"
162+
- "echo 'allow-newer: servant-auth-server:http-types,servant-auth-server:servant-server, servant-pagination:servant,servant-pagination:servant-server' >> cabal.project"
155163
- touch cabal.project.local
156164
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi"
157165
- cat cabal.project || true

cabal.project

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ packages: servant/
1111
doc/cookbook/basic-auth
1212
doc/cookbook/db-postgres-pool
1313
doc/cookbook/db-sqlite-simple
14-
-- MkLink changed
15-
-- doc/cookbook/file-upload
14+
doc/cookbook/file-upload
1615
doc/cookbook/https
17-
-- servant-auth-* doesn't support GHC-8.4
18-
-- doc/cookbook/jwt-and-basic-auth
16+
doc/cookbook/jwt-and-basic-auth
1917
doc/cookbook/pagination
2018
doc/cookbook/structuring-apis
2119
doc/cookbook/using-custom-monad
@@ -30,9 +28,5 @@ constraints:
3028
memory <0.14.12 || >0.14.12
3129

3230
allow-newer:
33-
http-media:base
34-
35-
allow-newer:
36-
servant-js:servant,
3731
servant-pagination:servant,
3832
servant-pagination:servant-server

0 commit comments

Comments
 (0)