github.com/xgoffin/jenkins-library@v1.154.0/documentation/docs/steps/abapEnvironmentAssemblePackages.md (about)

     1  # ${docGenStepName}
     2  
     3  ## ${docGenDescription}
     4  
     5  ### Artifacts
     6  
     7  - package logs ({packagename}.zip)
     8      This archive contains all relevant transport logs per assembled package which might be needed for detailed analysis in case of support requests or for audit purpose. For productive builds it might be advisable to store this file as well as the overall pipeline run logs in a revision proof manner. For every assembled package an respective zip archive with its related logs are created and archived as artifact.
     9  
    10  ## Prerequisites
    11  
    12  * A SAP BTP, ABAP environment system is available.
    13    * This can be created manually on Cloud Foundry.
    14    * In a pipeline, you can do this, for example, with the step [cloudFoundryCreateService](https://sap.github.io/jenkins-library/steps/cloudFoundryCreateService/).
    15  * Communication Scenario [“SAP BTP, ABAP Environment - Software Assembly Integration (SAP_COM_0582)“](https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/26b8df5435c649aa8ea7b3688ad5bb0a.html) is setup for this system.
    16    * E.g. a [Communication User](https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/0377adea0401467f939827242c1f4014.html), a [Communication System](https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/1bfe32ae08074b7186e375ab425fb114.html) and a [Communication Arrangement](https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/a0771f6765f54e1c8193ad8582a32edb.html) are configured.
    17    * This can be done manually through the respective applications on the SAP BTP, ABAP environment system,
    18    * or through creating a service key for the system on cloud foundry with the parameters {“scenario_id”: “SAP_COM_0582", “type”: “basic”}.
    19    * In a pipeline, you can do this, for example, with the step [cloudFoundryCreateServiceKey](https://sap.github.io/jenkins-library/steps/cloudFoundryCreateServiceKey/).
    20  * You have following options to provide the ABAP endpoint configuration:
    21    * The host and credentials the SAP BTP, ABAP environment system itself. The credentials must be configured for the Communication Scenario SAP_COM_0582.
    22    * The Cloud Foundry parameters (API endpoint, organization, space), credentials, the service instance for the ABAP service and the service key for the Communication Scenario SAP_COM_0582.
    23    * Only provide one of those options with the respective credentials. If all values are provided, the direct communication (via host) has priority.
    24  * The step needs information about the packages which should be assembled present in the CommonPipelineEnvironment.
    25    * For each repository/component version it needs the name of the repository, the version, splevel, patchlevel, namespace, packagename, package type, the status of the package, and optional the predecessor commit id.
    26    * To upload this information to the CommonPipelineEnvironment run prior to this step the steps:
    27      * [abapAddonAssemblyKitCheckCVs](https://sap.github.io/jenkins-library/steps/abapAddonAssemblyKitCheckCVs/),
    28      * [abapAddonAssemblyKitReserveNextPackages](https://sap.github.io/jenkins-library/steps/abapAddonAssemblyKitCheckPV/).
    29    * If one of the package is already in status released, the assembly for this package will not be executed.
    30  * The Software Components for which packages are to be assembled need to be present in the system.
    31    * This can be done manually through the respective applications on the SAP BTP, ABAP environment system.
    32    * In a pipeline, you can do this, for example, with the step [abapEnvironmentPullGitRepo](https://sap.github.io/jenkins-library/steps/abapEnvironmentPullGitRepo/).
    33  * The packages to be assembled need to be reserved in AAKaaS and the corresponding information needs to be present in CommonPipelineEnvironment. To do so run step [abapAddonAssemblyKitReserveNextPackages](https://sap.github.io/jenkins-library/steps/abapAddonAssemblyKitReserveNextPackages/) prior this step.
    34  
    35  ## ${docGenParameters}
    36  
    37  ## ${docGenConfiguration}
    38  
    39  ## ${docJenkinsPluginDependencies}
    40  
    41  ## Examples
    42  
    43  ### Configuration in the config.yml
    44  
    45  The recommended way to configure your pipeline is via the config.yml file. In this case, calling the step in the Jenkinsfile is reduced to one line:
    46  
    47  ```groovy
    48  abapEnvironmentAssemblePackages script: this
    49  ```
    50  
    51  If you want to provide the host and credentials of the Communication Arrangement directly, the configuration could look as follows:
    52  
    53  ```yaml
    54  steps:
    55    abapEnvironmentAssemblePackages:
    56      abapCredentialsId: 'abapCredentialsId',
    57      host: 'https://myABAPendpoint.com',
    58  ```
    59  
    60  Or by authenticating against Cloud Foundry and reading the Service Key details from there:
    61  
    62  ```yaml
    63  steps:
    64    abapEnvironmentAssemblePackages:
    65      abapCredentialsId: 'cfCredentialsId',
    66      cfApiEndpoint : 'https://test.server.com',
    67      cfOrg : 'cfOrg',
    68      cfSpace: 'cfSpace',
    69      cfServiceInstance: 'myServiceInstance',
    70      cfServiceKeyName: 'myServiceKey',
    71  ```
    72  
    73  ### Input via the CommonPipelineEnvironment
    74  
    75  ```json
    76  {"addonProduct":"",
    77  "addonVersion":"",
    78  "addonVersionAAK":"",
    79  "addonUniqueID":"",
    80  "customerID":"",
    81  "AddonSpsLevel":"",
    82  "AddonPatchLevel":"",
    83  "TargetVectorID":"",
    84  "repositories":[
    85    {
    86      "name":"/DMO/REPO_A",
    87      "tag":"",
    88      "branch":"",
    89      "version":"",
    90      "versionAAK":"0001",
    91      "PackageName":"SAPK001001REPOA",
    92      "PackageType":"CPK",
    93      "SpLevel":"0000",
    94      "PatchLevel":"0001",
    95      "PredecessorCommitID":"cbb834e9e03cde177d2f109a6676901972983fbc",
    96      "Status":"P",
    97      "Namespace":"/DMO/",
    98      "SarXMLFilePath":""
    99    },
   100    {
   101      "name":"/DMO/REPO_B",
   102      "tag":"",
   103      "branch":"",
   104      "version":"",
   105      "versionAAK":"0002",
   106      "PackageName":"SAPK002001REPOB",
   107      "PackageType":"CPK",
   108      "SpLevel":"0001",
   109      "PatchLevel":"0001",
   110      "PredecessorCommitID":"2f7d43923c041a07a76c8adc859c737ad772ef26",
   111      "Status":"P",
   112      "Namespace":"/DMO/",
   113      "SarXMLFilePath":""
   114    }
   115  ]}
   116  ```