Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Refactor build matrix (#43)
Rework and simplify the build through the following enhancements: * Build against multiple Erlang/OTP versions * Merge Ubuntu and Windows into a matrix build * Simplify config by using default fdb.cluster The last one is a bit obvious in hindsight. We don't need to be passing around custom overrides for the fdb.cluster file location; all we really need to do is just trust FDB to figure it out on each platform. To do this we allow for setting the test_cluster_file env to `system_default` instead of a path to a specific cluster file.
- Loading branch information
Showing
6 changed files
with
58 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,5 +1,5 @@ | ||
[ | ||
{erlfdb, [ | ||
{test_cluster_file, <<"/usr/local/etc/foundationdb/fdb.cluster">>} | ||
{test_cluster_file, system_default} | ||
]} | ||
]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -25,11 +25,6 @@ | ||
{eunit_opts, [ | ||
{sys_config, "devcontainer.config"} | ||
]} | ||
]}, | ||
{win32_external_fdbserver, [ | ||
{eunit_opts, [ | ||
{sys_config, "win32_external_fdbserver.config"} | ||
]} | ||
]} | ||
]}. | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.