-
Notifications
You must be signed in to change notification settings - Fork 4
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
Update .gitignore && add dockerApps.evaluation-test to CI #87
Conversation
WalkthroughThe changes in this pull request primarily involve updates to the Nix and Docker configuration files. The modifications include adjustments to package paths, renaming of variables, and alterations to default package attributes. These changes do not appear to affect the core functionality of the application but rather seem to be aimed at improving the build and deployment process. Changes
|
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.
Files selected for processing (2)
- .gitignore (1 hunks)
- nix/ci.nix (1 hunks)
Files skipped from review due to trivial changes (1)
- .gitignore
Review comments generated (0)
- Actionable : 0
- LGTM (Skipped): 0
- Noise Suppression (Skipped): 1
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Tag the bot with
@coderabbitai
in any review comment to ask it questions. The bot will not respond unless explicitly tagged. - A review comment is a comment on a diff or a file and not a comment on the PR itself.
- You can use the mouse to select multiple lines of code to provide exact context to the bot.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
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.
Files ignored due to filter (1)
- flake.lock
Files selected for processing (2)
- nix/docker-files/docker.nix (1 hunks)
- nix/per-system-outputs.nix (1 hunks)
Files skipped from review due to trivial changes (2)
- nix/docker-files/docker.nix
- nix/per-system-outputs.nix
Review comments generated (0)
- Actionable : 0
- LGTM (Skipped): 0
- Noise Suppression (Skipped): 0
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Tag the bot with
@coderabbitai
in any review comment to ask it questions. The bot will not respond unless explicitly tagged. - A review comment is a comment on a diff or a file and not a comment on the PR itself.
- You can use the mouse to select multiple lines of code to provide exact context to the bot.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
@@ -64,8 +64,8 @@ | |||
finalImageName = "nixos/nix"; | |||
finalImageTag = "2.15.0"; | |||
}; | |||
genFlake = inputs'.self.packages.dapps-certification-helpers-exe-generate-flake-ghc927; |
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.
Aliases for your cabal executables only (this excludes benchmarks and test suites) are added to your packages
and apps
flake outputs.
Alias means just the executable name as found in your cabal file, without the $CabalPackageName-exe-
prefix.
For projects supporting a single compiler (like in this repo, ghc927
), the compiler name is no longer appended to the flake outputs names.
inputs'.self.packages.dapps-certification-helpers-exe-generate-flake-ghc927 ->
inputs'.self.packages.generate-flake
inputs'.self.apps.dapps-certification-exe-plutus-certificatio-ghc927 ->
inputs'.self.apps.plutus-certification
If you cabal project has multiple executables with the same name across your cabal files, a warning will be generated when running list-flake-outputs
and no aliases will be created.
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.
lgtm
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.
Files ignored due to filter (1)
- flake.lock
Files selected for processing (1)
- nix/docker-files/docker.nix (1 hunks)
Files skipped from review due to trivial changes (1)
- nix/docker-files/docker.nix
Review comments generated (0)
- Actionable : 0
- LGTM (Skipped): 0
- Noise Suppression (Skipped): 0
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Tag the bot with
@coderabbitai
in any review comment to ask it questions. The bot will not respond unless explicitly tagged. - A review comment is a comment on a diff or a file and not a comment on the PR itself.
- You can use the mouse to select multiple lines of code to provide exact context to the bot.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
@bogdan-manole are we ok with the |
yes, that's ok, anyway |
Things that slipped through the previous PR
Summary by CodeRabbit
Refactor:
nix/ci.nix
.genFlake
andbuildFlake
variables innix/docker-files/docker.nix
.defaultPackage
attribute value innix/per-system-outputs.nix
.Chore:
.pre-commit-config.yaml
to.gitignore
.