Questions tagged [build-pipeline]

161 questions
2
votes
0 answers

How to trigger a task inside a job from jenkins pipeline

I have a Maven project that builds a war file and a separate batch task inside the build job to deploy it to a server (this is basically a shell script executed on Jenkins). This is the pipeline script: node { stage('Build') { build job:…
2
votes
0 answers

Jenkins Build Pipeline Plugin - DescriptorImpl checkbox

Jenkins: 2.46.3 or greater Build Pipeline Plugin: 1.5.4 What's the benefit of selecting this checkbox in a Pipeline View's configuration page? Tried checking and unchecking it, but it doesn't reflect any changes to the pipeline job view page. Some…
AKS
  • 16,482
  • 43
  • 166
  • 258
2
votes
2 answers

Copy some extra file in data folder after build in unity

I have to copy two text files and a folder to my build data folder after finishing the build (exe) for windows platform. Each time I build, I want to copy these files and folder from assets to build data folder. Is this possible in unity? Cause…
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
2
votes
1 answer

IBM DevOps Pipeline: How to Access Artifacts from Previous Job?

I have a build stage as shown below with two build jobs, a frontend and a backend job. How do I directly access the Build Archive Directory of the frontend job from the backend job's build script? I need to access the frontend build artifacts in…
Dave L.
  • 9,595
  • 7
  • 43
  • 69
2
votes
2 answers

Parameterizing a Jenkins job with the versions of multiple upstream jobs

I need to create a build pipeline which consists of multiple projects that depend on each other. Here is a simplified illustration: SVN A --> build A --\ | SVN B --> build B --| | SVN C ----------------> build…
Esko Luontola
  • 73,184
  • 17
  • 117
  • 128
2
votes
1 answer

Can Jenkins handle an gui/non-gui interactive python or java program?

I want to create a build pipeline, and developers need to set up a few things into a properties file which gets populated using a front end GUI. I tried running sample CLI interactive script using python that just asked for a name and prints it out…
1
vote
1 answer

Artifacts - Create. Azure DevOps REST API

I'm trying to upload a build artifact to my Azure DevOps pipeline using the REST API: https://learn.microsoft.com/en-us/rest/api/azure/devops/build/artifacts/create?view=azure-devops-rest-7.1 But it's not clear from the documentation how to use this…
volodev
  • 15
  • 2
1
vote
1 answer

Dependencies azure devops yaml

I can't understand why dependencies don't work. I need to fix - task: cake@2 and other commented tasks. Now they looks like jobs, but I need to convert them into tasks. Here that task: - task: Cake@2 displayName: Restore FE and Sitecore…
1
vote
0 answers

Failed to resolve packages. Failed to add editor bundled package --> Circle Ci

I've been having this problem for about a week now and I don't know what to do. I always build to project with flatman. I tried everything but it didn't work. Please help. and manifest files have these ["com.unity.buy":…
1
vote
0 answers

MSBUILD : error MSB1009: Project file does not exist. [error]Process 'msbuild.exe' exited with code '1'

I am deploying the BizTalk project into Azure DevOps for CI/CD. In Azure DevOps, I created a new Agent called "newagent"[DevAgentPool]. I am receiving the above error when trying to build a pipeline. I have looked at the other answers to this…
1
vote
1 answer

Azure DevOps Publish Azure Function not working

I am trying to create a pipeline in order to publish my code in an Azure Function. In order to do that I am using the following as reference:…
1
vote
1 answer

Trigger an Azure Pipeline Build on push to a sub-module?

I'm working with a repository (A) that contains a different repo as a sub-module (B). The contents of repo B is used by the logic in A, and needs to be updated regularly. I currently have an Azure build pipeline which is triggered whenever a push to…
Kjartan
  • 18,591
  • 15
  • 71
  • 96
1
vote
1 answer

How to include a yaml template between 2 different tasks in the another template in Azure pipeline deployment

I'm new to yaml pipeline deployments, Can any point me to the right direction on how to include a yaml template between different tasks in the main template in Azure pipeline deployment. I have created build.yaml file which has several tasks. Now I…
1
vote
2 answers

Set Xcode version in Azure DevOps pipeline in CmdLine@2 task

I use an CmdLine@2 task in my azure DevOps pipeline and trying to build the app, but unfortunately the Xcode Build job failed. I'm using SwiftUI classes which need to be at least build with Xcode 12.5, but the azure DevOps agent uses Xcode 12.4…
Antonio K
  • 144
  • 11
1
vote
1 answer

Azure Build Pipeline visual studio error while running build: access denied. Please make sure you're running the application as administrator

I am creating a Azure build pipeline where I am using a powershell and MSBuild extension to create build. My project has multiple solutions and steps In msbuild. When I am running powershell from system I am able to create build successfully but…