-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor CI avoiding test circular dependencies (#227)
* Refactor CI avoiding test circular dependencies Instead of running tests in the parent "bytestring" project, with circular dependencies from the test frameworks, build and run them in the child `bytestring-tests` project, which builds the parent as a dependency that does not run tests, avoiding all the loops. This requires cabal-install >= 2.4 with cabal.project doing most of the heavy lifting. * .travis.yml: Remove unnecessary .tix file deletion step Co-authored-by: Viktor Dukhovni <ietf-dane@dukhovni.org> Co-authored-by: Simon Jakobi <simon.jakobi@gmail.com>
- Loading branch information
1 parent
3171311
commit 5970194
Showing
6 changed files
with
65 additions
and
155 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packages: bytestring.cabal | ||
tests: False | ||
benchmarks: False |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
packages: bytestring-tests.cabal | ||
tests: True |