Upgrade nixpkgs to current master and add an upgrade checklist (#1579)

* simplify haskell packages overrides based on new nixpkgs
* update Nix gitignore
* simplify Haskell packages overlay

Co-authored-by: monacoremo <monacoremo>
This commit is contained in:
Remo Rechkemmer
2020-09-09 19:08:16 -05:00
committed by GitHub
co-authored by monacoremo <monacoremo>
parent bd2160db26
commit 7af54c5813
12 changed files with 188 additions and 90 deletions
+10 -9
View File
@@ -108,16 +108,17 @@ let
in
# Create an environment that contains all the utility scripts for running tests
# that we defined above.
buildEnv {
name =
"postgrest-tests";
buildEnv
{
name =
"postgrest-tests";
paths =
[
(testSpec "postgrest-test-spec" postgresql)
testSpecAllVersions
] ++ testSpecVersions;
}
paths =
[
(testSpec "postgrest-test-spec" postgresql)
testSpecAllVersions
] ++ testSpecVersions;
}
# The IO an memory tests have large dependencies (a static and a profiled
# build of PostgREST respectively) and are run less often than the spec
# tests, so we don't include them in the default test environment. We make