-
-
Notifications
You must be signed in to change notification settings - Fork 109
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
Travis: rename stage; allow version branches #343
Conversation
@@ -58,6 +59,7 @@ jobs: | |||
|
|||
stages: | |||
- name: validations | |||
- name: test |
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'd keep validations and test in a single stage. A silly error in validations
will mask further errors in test
.
How about splitting the following way:
- validations and tests-JDK11 (3 jobs in the first stage both scala 2.12 and 2.13)
- tests-JDK8 (2 extra jobs)
- other stages
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's the wasted Travis jobs I wanted to get rid off, it's now as before.
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.
Sure. I come from maintaining 40+min builds so these wasted travis jobs look like peanuts. :-)
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.
See comment above: jdk11-tests wit validations
- /^\d+\.\d+(\.\d+)?(-\S*)?$/ |
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.
nice catch!
@@ -58,6 +59,7 @@ jobs: | |||
|
|||
stages: | |||
- name: validations | |||
- name: test |
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.
Sure. I come from maintaining 40+min builds so these wasted travis jobs look like peanuts. :-)
and update readme
references #294