Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
Problem Statement : When you perform wM Upgrade from one version to another, you might face issue how to configure Azure DevOps pipelines for automated deployment…here are the simple steps which can help.
Step 1. Prepare Azure Pipelines
Go to your repo, (For example wm.partnership)
Select Azure-pipelines from drop down and create separate file for higher version.
We have taken here example to upgrade from 10.5 to 10.11 server.
i.e. in below screenshot, azure-pipelines.yml is for 10.5 server and we created azure-pipelines-1011.yml file for 10.11 server.
Open file and change value as per higher environment…
Note : Value changed from DEV to DEV1011 as below.
Step 2. Create Folder inside respective branch with upgrade servers.
Now go to DEV branch and clone it to local using git and create folder named as DEV1011, which should be same as DEV.
Note → make sure host/port/user/pwd/version should be as per upgrade server details).
Step 3. Create Variables
-Add below variables with upgraded server details and save.
Step 4. Deployment