azure-pipelines

Error: No matching files were found with search pattern: D:\a\1\s\**\*.apk

大城市里の小女人 提交于 2021-01-27 06:15:10
问题 I have react-native application in windows 10 which works great in my development machine, it can release signed apk and everything is ok. I am using VSTS (TFS Online) as my source control, When I Build my project, everything built successfully, but I get strange error this is where you can see build successfully done, and I face error this is the error details any clue? Update These are my tasks in Build definition Update 2 Add Gradlew task in Build definition 回答1: I'm answering my own

Cannot create new Pipeline using Az DevOps Pipelines API 6.0-preview.1

前提是你 提交于 2021-01-27 05:46:08
问题 I'm trying to create new Pipelines using this API endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines?api-version=6.0-preview.1 This is the request I'm using: curl -X POST \ 'https://dev.azure.com/<myorg>/<myproj>/_apis/pipelines?api-version=6.0-preview.1' \ -H 'Authorization: Basic <b64string>' \ -H 'Cache-Control: no-cache' \ -H 'Content-Type: application/json' \ -d '{ "configuration":{ "repository": { "id": "<repo-guid>", "name": "<repo-name>", "type":

Cannot create new Pipeline using Az DevOps Pipelines API 6.0-preview.1

你。 提交于 2021-01-27 05:44:13
问题 I'm trying to create new Pipelines using this API endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines?api-version=6.0-preview.1 This is the request I'm using: curl -X POST \ 'https://dev.azure.com/<myorg>/<myproj>/_apis/pipelines?api-version=6.0-preview.1' \ -H 'Authorization: Basic <b64string>' \ -H 'Cache-Control: no-cache' \ -H 'Content-Type: application/json' \ -d '{ "configuration":{ "repository": { "id": "<repo-guid>", "name": "<repo-name>", "type":

why is azure build pipeline not generating a dist folder for an angular build

泪湿孤枕 提交于 2021-01-25 06:39:19
问题 It seem like the folder that are getting generated during the build are getting deleted before I could ran any other task dist folder. trigger: - master pool: default steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - script: | npm install -g @angular/cli npm install ng build --prod displayName: 'npm install and build' #i added this task and it seems like the node_modules and the dist #folder that was generated during the build are not getting copied to the

How to specify authentication for Pip Project setup pip with extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) on azure pipelines/artifacts

故事扮演 提交于 2021-01-24 18:49:28
问题 Azure Artifacts allows posting a module to an Artifactory that can then be installed by using pip by setting extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) However, when using pip install, the system is asking for a user/password Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? 回答1: Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? What you met is expected behavior if it's the first time that you try to

How to specify authentication for Pip Project setup pip with extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) on azure pipelines/artifacts

亡梦爱人 提交于 2021-01-24 18:40:32
问题 Azure Artifacts allows posting a module to an Artifactory that can then be installed by using pip by setting extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) However, when using pip install, the system is asking for a user/password Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? 回答1: Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? What you met is expected behavior if it's the first time that you try to

How to specify authentication for Pip Project setup pip with extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) on azure pipelines/artifacts

让人想犯罪 __ 提交于 2021-01-24 18:40:30
问题 Azure Artifacts allows posting a module to an Artifactory that can then be installed by using pip by setting extra-index-url in pip.ini (Windows) or pip.conf (Mac/Linux) However, when using pip install, the system is asking for a user/password Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? 回答1: Is it possible to setup this inside pip.conf and / or even better use .ssh signatures? What you met is expected behavior if it's the first time that you try to

Azure DevOps CI pipeline for master being triggered by changes in branch and vice versa

徘徊边缘 提交于 2021-01-23 06:51:11
问题 I have a CI build trigger setup for a repo as follows: trigger: - master I have a branch of the same repo that I would like to have it's own pipeline. In the pipeline.yml for the branch I have: trigger: - ops-workshop/ms-lab01 However, if I commit changes to my branch, builds are triggered for both the master and branch pipelines. Committing to master also triggers the pipeline for the branch (which it shouldn't). I have tried using the branches node to exclude master but it doesn't seem to

How to kill VBCSCompiler.exe on Ubuntu agent?

只谈情不闲聊 提交于 2021-01-13 11:02:06
问题 I created an Azure Devops Build pipeline and i am trying to build my ASP.NET MVC and Angular hybrid site project on bitbucket (git). The project first gets checked out, and nuget restores the necessary packages, and then the .NET builds. I used windows 2019 as azure pipeline agent for the build to succeed. however, Its taking about 7 minutes to complete, whilst running the tasks (besides .Net) on a ubuntu agent is much faster! takes around 2 mins instead! Therefore, I'd like to use ubuntu,

What .Net Core version to use on agent

强颜欢笑 提交于 2021-01-07 07:00:24
问题 Working on a dotnet core test pipeline, running on a Windows Self hosted agent, I have errors. As my project uses DotNet Core 3.1 and when I run "dotnet --version" on the agent it gives 5.0.100, I thought I had to install DotNet Core 3.1 but looking at Add/Remove Programs, I see versions 3.1.301 and 5.0.100 My pipeline contains: job: Test displayName: 'Test' steps: task: UseDotNet@2 inputs: packageType: 'sdk' version: '3.1.x' task: NuGetAuthenticate@0 displayName: 'Authenticate with NuGet'