azure-devops

Azure Devops Pipelines - Xcode project with multiple provisioning profiles

会有一股神秘感。 提交于 2020-12-15 06:24:47
问题 I have configured pipeline to build an iOS app that is also an AUv3 plugin, it requires two provisioning profiles but I can't manage the Plist to allow the signature for both. I have installed .p12 and Apple Provisioning Profiles. This is my Xcode task: steps: - task: Xcode@5 displayName: 'Xcode build' inputs: actions: 'build' sdk: iphoneos13.7 xcWorkspacePath: ‘project_name/project.xcworkspace' scheme: 'project_name - All' packageApp: true exportPath: output/ exportOptions: plist

Azure Devops Pipelines - Xcode project with multiple provisioning profiles

对着背影说爱祢 提交于 2020-12-15 06:24:24
问题 I have configured pipeline to build an iOS app that is also an AUv3 plugin, it requires two provisioning profiles but I can't manage the Plist to allow the signature for both. I have installed .p12 and Apple Provisioning Profiles. This is my Xcode task: steps: - task: Xcode@5 displayName: 'Xcode build' inputs: actions: 'build' sdk: iphoneos13.7 xcWorkspacePath: ‘project_name/project.xcworkspace' scheme: 'project_name - All' packageApp: true exportPath: output/ exportOptions: plist

Azure starting 2 self hosted servers deliver files to Azure managed agent both in pool but only 1 accepting copyfiles task

别等时光非礼了梦想. 提交于 2020-12-15 06:23:06
问题 I have a very strange behaver where I starting 2 self-hosted agents from my AWS server to deliver files to the managed agent in azure all with different names to be unique. but in the azure pipeline, i can see both pipelines are taking the files from only 1 place instead of taking files from its unique place in the self-hosting server. here is the command I'm starting the self-hosting docker server : they all take form : docker run -d --rm -t --name=ios_docker_128_linux_slave_2 -e AZP_WORK=

Azure starting 2 self hosted servers deliver files to Azure managed agent both in pool but only 1 accepting copyfiles task

大憨熊 提交于 2020-12-15 06:21:49
问题 I have a very strange behaver where I starting 2 self-hosted agents from my AWS server to deliver files to the managed agent in azure all with different names to be unique. but in the azure pipeline, i can see both pipelines are taking the files from only 1 place instead of taking files from its unique place in the self-hosting server. here is the command I'm starting the self-hosting docker server : they all take form : docker run -d --rm -t --name=ios_docker_128_linux_slave_2 -e AZP_WORK=

Unable to deploy .zip file using Kudu api to the Azure App Service

此生再无相见时 提交于 2020-12-15 06:17:07
问题 I'm using PowerShell inline task in the release pipeline to deploy the respective zip file to the Azure App Service, but im unable to achieve it due to the below error. Can you please let me know if there is any thing that im missing here. I'm getting below error Invoke-RestMethod : Path 'D:\a\r1\a_CI-VI-Maven/DeployPackages/marnet.zip' resolves to a directory. Specify a path including a file name, and then retry the command. Below is the script that im using: $username = "username" $password

Trigger another build exist in project in Azure Devops

谁说我不能喝 提交于 2020-12-15 06:07:18
问题 I have a repo name called A with its build pipeline as azure-pipelines.yml Then I have another repo called B with its build pipeline as azure-pipelines.yml Both A and B are under same project ProjectA This is the flow for repo A, build => release (stages ops and dev) repo B, Build create the Artifact and store the Artifact So, what I want to achieve is as soon as the release finished from repo A it should trigger build repo B. My pipeline A looks like this : name: SomethingFancy trigger: -

Trigger another build exist in project in Azure Devops

人走茶凉 提交于 2020-12-15 06:07:16
问题 I have a repo name called A with its build pipeline as azure-pipelines.yml Then I have another repo called B with its build pipeline as azure-pipelines.yml Both A and B are under same project ProjectA This is the flow for repo A, build => release (stages ops and dev) repo B, Build create the Artifact and store the Artifact So, what I want to achieve is as soon as the release finished from repo A it should trigger build repo B. My pipeline A looks like this : name: SomethingFancy trigger: -

Find Attachments in Azure DevOps REST Create

主宰稳场 提交于 2020-12-15 05:58:19
问题 When I submit an Attachment to the Azure DevOps REST service (create), is there a place I can go to visualise all of the attachments in there? Or is my best course of action to just send a GET which will give me the list? My problem then becomes...that there is no way for me to delete unwanted attachments. 回答1: Is there a place I can go to visualise all of the attachments in there? Or is my best course of action to just send a GET which will give me the list? I'm afraid, yes, the best course

How to remove escape character at an JSON string array?

橙三吉。 提交于 2020-12-15 05:16:30
问题 In Azure Data Factory, I have Lookup activity. "Lookup" activity, which reads the JSON Data from SQL DB (more than 1 row) and bring into ADF Pipeline. The lookup activity output contains escape character. Please see this: {\ "resourceType\ ":\ "counter","id" :\ "9i5W6tp-JTd-24252\ " How to remove escape character? Any help is appreciated. 回答1: Since your query result is an JSON String array, we need to do more to remove escape character. Here is my steps: Firstly, we can define two array type

SSH auth fails with “Host key verification failed” despite providing valid keys

时光怂恿深爱的人放手 提交于 2020-12-15 04:54:27
问题 In Azure DevOps Pipelines I want to SSH to a private repo with dependencies. I am getting following error: Host key verification failed. fatal: Could not read from remote repository. Despite uploading private key to secure files and public key is set in project variables. see below steps: - task: InstallSSHKey@0 inputs: hostName: $(hostname) sshPublicKey: $(testkey.pub) sshPassphrase: $(passphrase) sshKeySecureFile: testkey - script: | git clone git@github.xxxxxx.com:xxxx/xxxxx.git