azure-pipelines

Cannot clone git repository in command line script task in Azure DevOps Pipelines

爱⌒轻易说出口 提交于 2020-07-21 04:33:15
问题 I created azure devops pipeline where I need to download code from another git repository. As per recommended solution I've read somewhere, I added a command line script task with git clone command. Unfortunatelly this doesn't work. The error that I get is: remote: TF200016: The following project does not exist: My0Test0Project. Verify that the name of the project is correct and that the project exists on the specified Azure DevOps Server. fatal: repository 'https://dev.azure.com/myCompany

XXX does not does not support provisioning profiles in azure build pipeline

送分小仙女□ 提交于 2020-07-21 03:35:25
问题 I'm building an Ionic 4 application in Azure build pipeline. When I try to run pipeline that has other cordova dependencies I'm getting the errors below during the Xcode archive step. ❌ error: AppAuth does not support provisioning profiles. AppAuth does not support provisioning profiles, but provisioning profile Beta2020 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'AppAuth' from project 'Pods') ❌ error:

Azure Piplines Configuration for Xcode Managed Profile Setup - Possible? Documented?

↘锁芯ラ 提交于 2020-07-21 02:40:43
问题 Environment Server - Azure Pipelines Hosted MacOS agent Issue Description I'm using the following configuration in my Xcode project (w automatic code signing): Is it possible to have Pipelines build and sign a project using this configuration if I've manually installed all of the provisioning profiles and certs in my pipeline prior to building? Is there any documentation for this scenario or a how-to guide? Alternatively, if this is not possible perhaps a definitive statement on this and

Azure Piplines Configuration for Xcode Managed Profile Setup - Possible? Documented?

孤者浪人 提交于 2020-07-21 02:40:32
问题 Environment Server - Azure Pipelines Hosted MacOS agent Issue Description I'm using the following configuration in my Xcode project (w automatic code signing): Is it possible to have Pipelines build and sign a project using this configuration if I've manually installed all of the provisioning profiles and certs in my pipeline prior to building? Is there any documentation for this scenario or a how-to guide? Alternatively, if this is not possible perhaps a definitive statement on this and

Azure Piplines Configuration for Xcode Managed Profile Setup - Possible? Documented?

瘦欲@ 提交于 2020-07-21 02:40:08
问题 Environment Server - Azure Pipelines Hosted MacOS agent Issue Description I'm using the following configuration in my Xcode project (w automatic code signing): Is it possible to have Pipelines build and sign a project using this configuration if I've manually installed all of the provisioning profiles and certs in my pipeline prior to building? Is there any documentation for this scenario or a how-to guide? Alternatively, if this is not possible perhaps a definitive statement on this and

Azure Dev Ops react-scripts test hangs forever

只愿长相守 提交于 2020-07-20 10:50:10
问题 I'm trying to run my react app's tests in Azure Dev Ops I can't figure out how to make the execution stop after the tests run. It just hangs there, holding the pipeline in running mode forever. It's a simple create-react-app application which has a couple of tests. Below is my pipeline's YAML: trigger: none pool: vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - script: | npm install npm run build displayName: 'npm install and

azure pipelines - how to break / cancel a release based on a conditional task result

为君一笑 提交于 2020-07-20 04:12:12
问题 I have a release pipeline which is triggered by CI where I want to push a new version of a nuget package if that version does not exist yet . For that I have a simple command line task which checks whether that nuget is present on nuget.org and stores the result in an environment variable. I can then set the condition for next steps which will only execute the step if that value variable is true. This works all fine, however I wonder how can I simply stop the release process and skip all

Difference between .NetCore, VisualStudio build and MSBuild task in Azure Pipeline?

爷,独闯天下 提交于 2020-07-18 18:01:31
问题 I'm creating a new CI Azure Pipeline for my .Net Core projects. In Azure pipeline, Microsoft has provided three task for build i.e., .Net Core, Visual Studio Build and MSBuild. Since all three task does build operation, do we have any specific criteria to choose one task over another? I've gone through the documentation provided by Microsoft but I couldn't find much detail on this. https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/build/visual-studio-build?view=azure-devops Edit

Difference between .NetCore, VisualStudio build and MSBuild task in Azure Pipeline?

时光怂恿深爱的人放手 提交于 2020-07-18 18:00:40
问题 I'm creating a new CI Azure Pipeline for my .Net Core projects. In Azure pipeline, Microsoft has provided three task for build i.e., .Net Core, Visual Studio Build and MSBuild. Since all three task does build operation, do we have any specific criteria to choose one task over another? I've gone through the documentation provided by Microsoft but I couldn't find much detail on this. https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/build/visual-studio-build?view=azure-devops Edit

Azure DevOps Python Pipeline Agent.ToolsDirectory error on self-hosted agent

十年热恋 提交于 2020-07-09 12:13:24
问题 I have a self-hosted agent that has Python3.8 installed on it. I can access the agent and run the pipeline for my python package. I get an error with the Agent.ToolsDirectory not matching the right version. This is the log it outputs: 回答1: Task Use Python version will not use the python installed in your local machine which hosts your agent. It will search the Python versions in Agent.ToolsDirectory. Python 3.8 is not included in Microsoft-hosted agents, and it is not included in Agent