-
Notifications
You must be signed in to change notification settings - Fork 22
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
Move wflow_cli code from GitLab #295
Conversation
Largely copied from Ribasim.jl, need to check if all code from wflow_cli/create_app is covered
@@ -0,0 +1,28 @@ | |||
# ensure both projects are up to date |
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.
Is this file needed? We could just call create_app directly (as we do in Ribasim).
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.
It looked like this was the original file that was used to do the building (as we need/expect the test data to be there, for precompiling). I now merged this code into the create_app script
build/wflow_cli/Dockerfile
Outdated
@@ -0,0 +1,11 @@ | |||
FROM julia:1.8.2 |
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.
Better to use 1.9 here.
.gitignore
Outdated
@@ -21,3 +21,6 @@ | |||
/dev/ | |||
/test/data/ | |||
/tmp/ | |||
|
|||
# Build files | |||
/build/create_binaries/wflow_cli/ |
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.
Many files are missing EOF (blank line at end of file), indicated by the red sign.
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.
Thanks for spotting this. It should be fixed now!
Issue addressed
Fixes #274
Explanation
Copied code from GitLab to a
build
folder. Followed the structure from Ribasim.jl, also to allow for easier adding a libwflow in the future.Checklist
master
Additional Notes (optional)
The code to create the installer is also included in the build folder. This code can be used by TeamCity to build the installers.