SAP Analytics Cloud - CI/CD over azure devOps

215 views Asked by At

Is it possible to software manage deployments for SAP Analytics Cloud over pipelines in Azure devops?

1

There are 1 answers

0
Ceeno Qi-MSFT On

Maier

During the investigations and reference, I found this doc to build the integration to SAP Analytics Cloud from CF Cli.

From Azure DevOps side, I managed to create the CF Cli environment (doc reference) with the yaml pipeline below.

trigger: none

pool:
  vmImage: ubuntu-latest


steps:
- task: Bash@3
  inputs:
    targetType: 'inline'
    script: |
      wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
      echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list

Or via classic pipeline editor.

wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list

enter image description here

With the CF Cli commands, you could also set up other integrations to SAP Analytics Cloud.

Hope this procedure could help you with the integration, and if you are looking for methods for other type of source, you could also share with me.