-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate fs-api
and fs-sim
packages from ouroboros-network
repo.
#2
Conversation
0549b1a
to
c02c687
Compare
c02c687
to
13a1cfa
Compare
permissions: | ||
contents: read | ||
|
||
jobs: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not for this PR, but I wonder if we want to invest time in abstracting away this CI setup we replicate in multiple repos.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will create an issue for this
@@ -1,4 +1,4 @@ | |||
# Release process | |||
|
|||
See the [consensus release | |||
process](https://github.com/input-output-hk/ouroboros-network/blob/master/ouroboros-consensus/docs/ReleaseProcess.md). | |||
process](https://github.com/input-output-hk/ouroboros-consensus/blob/master/docs/ReleaseProcess.md). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idem #2 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to add a cabal formatter to our CI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idem #2 (comment)
, write | ||
) where | ||
|
||
import Prelude hiding (read, truncate) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to put all the imports together?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idem #2 (comment)
4460: Migrate `fs-api` and `fs-sim` packages to the `fs-sim` repo. r=jorisdral a=jorisdral # Description Part of #4082. This PR removes the `fs-api` and `fs-sim` packages from the `ouroboros-network` repository. The code is added to the `fs-sim` repository in this PR: input-output-hk/fs-sim#2. For now, we will have a `source-repository-package` entry in the `cabal.project` file, which can be removed once both `fs-sim` and `fs-api` are published to the CHaP. Co-authored-by: Joris Dral <joris@well-typed.com>
Part of IntersectMBO/ouroboros-network#4082.
This PR migrates the
fs-api
andfs-sim
packages from theouroboros-network
repository to the current repository. The code is copied as-is from the ouroboros-network#0659e7b7ef66b01763cdf15c2f8777a9394c248d commit . We also add a GitHub Actions workflow file, and a script for running thestylish-haskell
formatter.Follow-up TODOs:
fs-api
) and simulated file system (fs-sim
) fromouroboros-consensus
andouroboros-consensus-test
. IntersectMBO/ouroboros-network#4425