Skip to content
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(codepipeline): change to stand-alone Artifacts #2338

Merged
merged 1 commit into from
Apr 22, 2019

Commits on Apr 22, 2019

  1. feat(codepipeline): change to stand-alone Artifacts.

    This commit changes the way Artifacts are used in CodePipeline.
    Instead of being properties on the Actions,
    they are now stand-alone objects,
    created independently of the Actions,
    and referenced when instantiating them.
    This is to not force users to assign Actions to intermediate variables
    when defining a Pipeline.
    
    This change had a few interesting consequences:
    * We no longer needed the abstract subclasses of Action like SourceAction,
      DeployAction, etc., and so they were removed.
    * The old naming convention of `inputArtifacts` and `outputArtifactNames`
      was shortened to be simply `inputs` and `outputs`.
    * There was no longer any need to differentiate Build and Test Actions,
      and so the two CodeBuild and Jenkins Actions were merged into one.
    
    BREAKING CHANGE: CodePipeline Actions no longer have the `outputArtifact`
    and `outputArtifacts` properties.
    * `inputArtifact(s)` and `additionalInputArtifacts` properties were renamed
      to `input(s)` and `extraInputs`.
    * `outputArtifactName(s)` and `additionalOutputArtifactNames` properties
      were renamed to `output(s)` and `extraOutputs`.
    * The classes `CodeBuildBuildAction` and `CodeBuildTestAction` were merged
      into one class `CodeBuildAction`.
    * The classes `JenkinsBuildAction` and `JenkinsTestAction` were merged
      into one class `JenkinsAction`.
    skinny85 committed Apr 22, 2019
    Configuration menu
    Copy the full SHA
    75e5e6c View commit details
    Browse the repository at this point in the history