-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
feat(aws-codepipeline): Jenkins build and test Actions #1216
Conversation
a8a73ce
to
72fa5d9
Compare
Seems to me there should actually be two interface declarations, that only accidentally have the same properties but are actually different objects. One is:
The implementor of _registerCustomAction turns a This also makes it possible to have different arguments/defaults in the two, which might be relevant at some point. As an aside, I've taken to this convention:
The XxxOptions name is generally used in other JavaScript libraries where they allow customization parameters and they call them "options". But this naming convention has not been ratified by anyone :) |
72fa5d9
to
9676e1a
Compare
In the newest revision, I've completely changed the approach. I've elevated I'm curious what you think of this approach @rix0rrr. |
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.
So you're now making the registration explicit huh?
I like it! I think the API could be simplified a little further, but I like the approach!
9676e1a
to
69ce735
Compare
@rix0rrr I've changed the API according to your suggestions. Let me know if this is what you had in mind! |
69ce735
to
d9ae019
Compare
Rebased on top of the new @rix0rrr still waiting for your comments here! |
}).makeImportValue().toString(), | ||
version: new cdk.Output(this, 'JenkinsProviderVersion', { | ||
value: this.version, | ||
}).makeImportValue().toString(), |
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.
You can export forBuild and forTest here as well.
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 could, but I'm not sure it makes much sense. For example, then export
would be affected whether addToPipeline
/ addToPipelineAsTest
was called before, which I'm not sure is the correct behavior.
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.
What I'm trying to enable is the following 2 scenario's:
- Define JenkinsProvider in the same stack as where it's used. Automatically works with a minimal amount of fuss.
- Define JenkinsProvider in stack A. Enable "forBuild" upon construction (because it won't be done automatically). Export it and import it in the stack B. The imported one cannot be used for tests (it will throw an error because it knows it wasn't "set up" that way), but it can be used for builds.
The case that in a two-stack scenario "forBuild" may be implicitly switched on if you happen to use a build action in stack A is maybe not fantastic, but also doesn't hurt anything (imo), especially with runtime validation in stack B (because if you remove that code, the runtime error will prevent a broken template from from being synthesized).
The fact that in scenario (2) the imported provider in stack B automatically knows what actual providers have been registered on the real provider in stack A only makes it better. Without this automatic piggy-backing of configuration information you would still have had to manually switch on the correct registrations in stack A, and in stack B you would also have to either assume it was configured correctly with no way of checking, or you would have to pass this additional information on import.
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.
If you're concerned about ordering, fair enough. Not something we can avoid, really, in the paradigm that we've chosen. I'd hate to lose ergonomics because of it, and also not a blocker since you can always trigger the behavior you want with constructor arguments if the ordering happens to not work out in your favor.
*/ | ||
version?: string; | ||
|
||
forBuild?: boolean; |
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.
Do you like this better than a Build/Test/Both
enum?
Also, docstrings.
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.
Do you like this better than a Build/Test/Both enum?
I do, but I won't insist if you really like the enum approach more :).
Also, docstrings.
Yep, done.
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 wanted to have had the argument, and confirmation that you prefer this.
} | ||
|
||
public _includeBuildVariant(): void { | ||
// do nothing |
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.
If we make the forBuild and forTest arguments to the imported props, we can do a sanity check and throw a useful error here.
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.
Won't that make using the imported provider more irritating? I assume that forBuild
and forTest
will be false
by default, so if you do:
const provider = codepipeline.JenkinsProvider.import(this, 'Provider', {
providerName: 'Provider',
serverUrl: 'http://my-jenkins.com:8080',
});
provider.addToPipeline(/* ... */);
and you would get an exception saying forBuild
should be true
when doing the import.
Not sure it's worth it...?
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 see your concern. My thoughts were that it would be used with the export()
/import()
combination instead of a manual import, in which case you wouldn't need to pass the additional argument yourself.
You seem to be optimizing for cross-app, while I'm optimizing for in-app, cross-stack. Is that fair to say?
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'm not sure I'm optimizing for it, just pointing out a potential usability issue with that use case :)
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.
The way I'm looking at it, by deciding whether or not to add that parameter to the ImportProps, we're optimizing for usability of one of the two cases. We just have to decide which one we care more about.
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 think I prefer the current approach, for 2 reasons:
a) the link between specifying the forBuild: true
parameter to import
before calling provider.addToPipeline(...)
seems very unintuitive to me. I understand we can have a nice error message, but still, I don't love this approach.
b) I can't see a good use case for creating the provider in one Stack, but adding it to the Pipeline in another. Even if someone tried to do it, it wouldn't actually work! The imported Provider would throw an exception saying it wasn't marked for build. Of course, you could pass forBuild: true
when creating it in the original Stack, but again, I don't find that intuitive.
Personally, if you feel strongly about having this validation, then I would rather go back to having separate Providers for build & test. I don't think forcing passing forBuild/forTest: true
, and in a call before you get the actual exception, is a great API.
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.
Alrighty then. That was the last point of discussion, right? So ship it?
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.
So ship it?
If you don't have any other comments, then 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.
Already approved on my part so go ahead
75e3551
to
08b97e4
Compare
Rebased to resolve conflict. |
08b97e4
to
b95008a
Compare
New revision due to upstream changes ( |
As Jenkins Actions require registering a custom Action, I've also added a skeleton of that functionality, right now not exported from the
aws-codepipeline
module.The weird part is that I had to define
CustomActionRegistrationProps
in theaws-codepipeline-api
module (as they should be usable from Action classes, that have access to_registerCustomAction(CustomActionRegistrationProps)
), but at the same time I had to putCustomActionRegistration
inaws-codepipeline
(as it uses the CodePipeline L1 in its implementation). It works fine, it's just that we always put the construction props next to their classes - but I don't see a different way forward in this particular case.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license.