-
Notifications
You must be signed in to change notification settings - Fork 21
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 releases deployment from internal Jenkins to Travis. #24
Conversation
.travis.yml
Outdated
@@ -7,5 +7,12 @@ services: | |||
script: | |||
- bash ci/build.sh | |||
|
|||
deploy: | |||
- provider: script | |||
script: PUBLISH=true bash ci/build.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.
no need to specify bash
here, just do:
script: PUBLISH=true ci/build.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.
Just copied it from script
above. Should we remove it too?
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.
yep!
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.
Done.
@ming13 it should work, the only caveat I have on mind is that current way of getting git tags in gradle scripts doesn't allow one commit to have multiple tags That can be fixed by using |
lgtm! Don't forget to add env variables on Travis |
Ready to roll. The next release should be deployed from Travis. |
After the merge I’ll do the following.
@artem-zinnatullin, anything else?