ci: activate -Werror in dev.sh config

This PR was migrated from https://github.com/hasura/graphql-engine/pull/6171

---
### Description
A trivial change to make `dev.sh` use -Werror. This is what our CI uses, and it's annoying to have a PR rejected because of a warning that was missed at dev time. Since this is only for `dev.sh`, it won't impact most people's normal workflow.

Co-authored-by: Antoine Leblanc <1618949+nicuveo@users.noreply.github.com>
GitOrigin-RevId: 37c2f088c37326c244533a003bf9b8169448abc8
This commit is contained in:
hasura-bot 2021-01-09 03:01:36 +05:30
parent 0d194724ee
commit e44b47f498

View File

@ -3,9 +3,7 @@
-- which in turn consults this file.
--
-- You can temporarily override values here rather than modifying 'dev.sh'
-- during development (although that might break certain things)values here
-- rather than modifying 'dev.sh' during development (although that might
-- break certain things).
-- during development (although that might break certain things).
package *
documentation: true
@ -26,3 +24,5 @@ package graphql-engine
-- which is not what we originally wanted. But building the test modules
-- themselves with coverage is actually nice for validation.
coverage: true
-- to match CI:
ghc-options: -Werror