skip to Main Content

Pull request build from Azure in Jenkins?

We are migrating our gitlab projects to AzureDevOps. Currently, our projects in gitlab are configured with a webhook, which triggers a jenkins build on every commmit. The jenkins build pipeline is written in groovy, and has a different flow when…

VIEW QUESTION

Ubuntu – exporting & re-using variables from Stage1 to Stage2 in Azure devops

- stage: publish_service_names dependsOn: build_code jobs: - job: get_services pool: ${{ if eq(parameters.useCustomAgentPool, true) }}: name: ${{ parameters.customAgentPoolName }} ${{ if eq(parameters.useCustomAgentPool, false) }}: vmImage: ubuntu-latest steps: - bash: | services=$(cat $(Pipeline.Workspace)/variables/services.txt) echo "service List : $services" echo "##vso[task.setvariable variable=serviceName;]$services"…

VIEW QUESTION

Azure – Devops variable group

I have a situation where I have a variable group that will hold the credential (username/pwd) which will be used by my pipeline task. I want to use one variable group for holding credentials for all environment and I want…

VIEW QUESTION
Back To Top
Search