0

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

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
R. Maier
  • 340
  • 2
  • 13
  • you could refer to the steps in this [sap blog](https://blogs.sap.com/2021/01/25/build-a-ci-cd-pipeline-in-azure-devops-and-connect-it-to-sap-cloud-foundry/) to create the integration between Azure DevOps and SAP Analytics Cloud. – Ceeno Qi-MSFT Nov 29 '22 at 06:01
  • hi @CeenoQi-MSFT, good point. In the shown sap blog, they were using the mta build tool. How can i get the sources from SAP Analytics Cloud as input for the MTA build tool? – R. Maier Nov 29 '22 at 09:21
  • @CeenoQi-MSFT no i don't right now. Im doubting where to find all required inputsources for the local build. is it only the content i get over SACs webide > export, or do i need to grab anything else for the build? – R. Maier Dec 04 '22 at 14:03
  • Hi Maier, any update? – Ceeno Qi-MSFT Dec 12 '22 at 12:37
  • @CeenoQi-MSFT, oh yes, that's my issue. I'm gonna try and come back later – R. Maier Dec 13 '22 at 06:22
  • Hi Maier, any update? – Ceeno Qi-MSFT Dec 21 '22 at 06:47

1 Answers1

0

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.

Ceeno Qi-MSFT
  • 924
  • 1
  • 3
  • 5