-
Notifications
You must be signed in to change notification settings - Fork 898
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
remote log/.gitkeep #17663
remote log/.gitkeep #17663
Conversation
4795d74
to
90a78de
Compare
.travis.yml
Outdated
@@ -25,6 +25,7 @@ addons: | |||
postgresql: '9.5' | |||
before_install: | |||
- source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh | |||
- mkdir ${TRAVIS_BUILD_DIR}/log |
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.
Should this be done before before_install.sh
?
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.
this works, but I'll change - thnx
Our appliances link log to a different direction. This means it will always be a modified git tree. Git stash does not work across symbolic links. so it makes patching and git functions difficult on the appliance
... no need for @Fryguy to be assigned - but if you have an opinion Jason, please share |
Checked commit kbrock@ab4fa87 with ruby 2.3.3, rubocop 0.52.1, haml-lint 0.20.0, and yamllint 1.10.0 |
oh no - looks like all repos will need some |
Since ManageIQ/manageiq#17663, there is no manageiq/log directory by default.
in ab4fa87 we removed the creation of the log directory In production / appliances, we don't want an actual log directory. Unfortunatly the current solution caused issues for plugins Instead, the log creation was moved to the environment setup. So all plugins travis builds will get the benefit ManageIQ#17663
in ab4fa87 we removed the creation of the log directory In production / appliances, we don't want an actual log directory. Unfortunatly the current solution caused issues for plugins Instead, the log creation was moved to the environment setup. So all plugins travis builds will get the benefit ManageIQ#17663
Our appliances link log to a different direction.
This means it will always be a modified git tree.
Git stash does not work across symbolic links. so it makes patching and git
functions difficult on the appliance
Not sure the downside of not having a
log
directory by default on a developer's rails machine.The only downside I can see.