mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
713a5fe319
There is no return value coming from mtaBuild anymore.
67 lines
4.6 KiB
Markdown
67 lines
4.6 KiB
Markdown
# mtaBuild
|
|
|
|
## Description
|
|
Executes the SAP Multitarget Application Archive Builder to create an mtar archive of the application.
|
|
|
|
Before doing this, validates that SAP Multitarget Application Archive Builder exists and the version is compatible.
|
|
|
|
Note that a version is formed by `major.minor.patch`, and a version is compatible to another version if the minor and patch versions are higher, but the major version is not, e.g. if 3.39.10 is the expected version, 3.39.11 and 3.40.1 would be compatible versions, but 4.0.1 would not be a compatible version.
|
|
|
|
## Prerequisites
|
|
* A docker image meeting the following requirements
|
|
* **SAP MTA Archive Builder 1.0.6 or compatible version** - can be downloaded from [SAP Development Tools](https://tools.hana.ondemand.com/#cloud).
|
|
* **Java 8 or compatible version** - necessary to run the `mta.jar` file.
|
|
* **NodeJS installed** - the MTA Builder uses `npm` to download node module dependencies such as `grunt`.
|
|
|
|
## Parameters
|
|
| parameter | mandatory | default | possible values |
|
|
| -----------------|-----------|--------------------------------------------------------|--------------------|
|
|
| `script` | yes | | |
|
|
| `dockerImage` | yes | | |
|
|
| `dockerOptions` | no | '' | |
|
|
| `buildTarget` | yes | `'NEO'` | 'CF', 'NEO', 'XSA' |
|
|
| `extension` | no | | |
|
|
| `mtaJarLocation` | no | `'mta.jar'` | |
|
|
| `applicationName`| no | | |
|
|
|
|
* `script` - The common script environment of the Jenkinsfile running. Typically the reference to the script calling the pipeline step is provided with the `this` parameter, as in `script: this`. This allows the function to access the [`commonPipelineEnvironment`](commonPipelineEnvironment.md) for retrieving, for example, configuration parameters.
|
|
* `dockerImage` - The Docker image to execute the MTA build.
|
|
A custom built image needs to include Multi-target Application Archive Builder.
|
|
Refer to [SAP Help Portal](https://help.sap.com/viewer/58746c584026430a890170ac4d87d03b/Cloud/en-US/ba7dd5a47b7a4858a652d15f9673c28d.html) for information on how to set it up.
|
|
* `dockerOptions` Docker options to be set when starting the container. It can be a list or a string.
|
|
* `buildTarget` - The target platform to which the mtar can be deployed.
|
|
* `extension` - The path to the extension descriptor file.
|
|
* `mtaJarLocation` - The location of the SAP Multitarget Application Archive Builder jar file, including file name and extension. First, the location is retrieved from the environment variables using the environment variable`MTA_JAR_LOCATION`. If no environment variable is provided, the location is retrieved from the parameters, or the step configuration using the key `mtaJarLocation`. If SAP Multitarget Application Archive Builder is not found on one of the previous locations an AbortException is thrown.
|
|
Note that the environment variable `MTA_JAR_LOCATION` has priority. In case that the script runs on multiple nodes, SAP Multitarget Application Archive Builder must be located on all the nodes, therefore the environment variable must be also configured on all the nodes.
|
|
* `applicationName` - The name of the application which is being built. If the parameter has been provided and no `mta.yaml` exists, the `mta.yaml` will be automatically generated using this parameter and the information (`name` and `version`) from `package.json` before the actual build starts.
|
|
|
|
## Step configuration
|
|
The following parameters can also be specified as step parameters using the global configuration file:
|
|
|
|
* `dockerImage`
|
|
* `buildTarget`
|
|
* `extension`
|
|
* `mtaJarLocation`
|
|
* `applicationName`
|
|
|
|
## Return value
|
|
none
|
|
|
|
## Side effects
|
|
1. The file name of the resulting archive is written to the `commonPipelineEnvironment` with variable name `mtarFileName`.
|
|
|
|
## Exceptions
|
|
* `AbortException`:
|
|
* If SAP Multitarget Application Archive Builder is not found.
|
|
* If there is an invalid `buildTarget`.
|
|
* If there is no key `ID` inside the `mta.yaml` file.
|
|
|
|
## Example
|
|
```groovy
|
|
def mtarFileName
|
|
dir('/path/to/FioriApp'){
|
|
mtarFileName = mtaBuild script:this, buildTarget: 'NEO'
|
|
}
|
|
```
|
|
|