bamboo

Heroku domain registration configured to bamboo on a cedar stack

☆樱花仙子☆ 提交于 2020-01-13 04:59:46
问题 I have a DNS config issue with Heroku while running on the Cedar Stack. It keeps thinking I'm routing my Cedar stack to Bamboo when my custom domains have the correct pointing CNAME records and are properly configured to Heroku instruction. Here's what happened: I recently created a heroku app in the past week with a cedar stack. Region: United States Stack: Cedar Framework: Ruby/Rails And I used NameCheap to register my domain and pointed it to the CNAME record. Host Name | IP Address/URL |

OpenCover MSBuild Integration - No results generated

时光毁灭记忆、已成空白 提交于 2020-01-11 09:21:51
问题 After getting OpenCover to work on my machine, the next step is getting it to work with the build server. I've been trying to integrate OpenCover with MSBuild on a Bamboo Build Server. I have modified Build.proj as follows to run OpenCover after building the solution: <Target Name="TestAndCodeCoverage" DependsOnTargets="Build" > <Message Text="Executing Unit Tests and running OpenCover to check code coverage..." /> <MakeDir Directories="Coverage" /> <Exec Command='"C:\Program Files (x86)

Correctly specify test report location for Grails 3 build on Bamboo

邮差的信 提交于 2020-01-06 01:54:13
问题 I am building a Grails 3 application using Atlassian Bamboo. I've configured the Grails 3 task as explained in my answer to this question. I am having trouble getting Bamboo to find my test reports. On the Grails task type, you can specify if the task produces test results, and if so, where they come from. So I have tried the following: Look in the standard test results directory Specify custom results directories: **/*reports/*.xml (which is the default when you choose Specify...) build

Remote Trigger Bamboo build from BitBucket Server webhook only on PR?

元气小坏坏 提交于 2020-01-03 16:50:32
问题 I'm new to bamboo and webhooks. I'm trying to start a bamboo build automatically when a PR to master branch from my repo is opened. I followed this guide but the remote trigger is not starting at all. Bamboo: BitBucket: I've already checked the following: verify that the whitelisted ip is correct (the bitbucket webhook fails if i remove that) my bamboo plan is enabled and is building fine on manual run What am I missing? Bamboo build plan in YAML: --- oid: 7818389690603565060 key: XT name:

Can I download Bamboo built artifacts using Bamboo Rest - API?

流过昼夜 提交于 2020-01-03 13:32:41
问题 This page states: Bamboo's REST APIs provide the following capabilities: Retrieve the artifacts for a build. and here I see the documentation: http://myhost.com:8085/bamboo/rest/api/latest/plan/{projectKey}-{buildKey}/artifact [GET] When I try this link with the bamboo server I have, like: https://my.bamboo.server/rest/api/latest/plan/MY-PLAN/artifact All I get is: <artifacts expand="artifacts"> <link href="http://my.bamboo.server/rest/api/latest/plan/MY-PLAN/artifact" rel="self"/> <artifacts

How to push Tag to Bitbucket Git Repository in Bamboo from Cake build task?

左心房为你撑大大i 提交于 2020-01-03 02:58:05
问题 I'm using next code to push Tag to Git repository #addin "Cake.Git" using LibGit2Sharp; var solutionFolder = "./"; var versionTag = "someTag"; Task("Default") .Does(() => { var remoteRepository = EnvironmentVariable("bamboo_planRepository_repositoryUrl"); var repositoryRevision = EnvironmentVariable("bamboo_planRepository_revision"); var absolutePath = MakeAbsolute(Directory(solutionFolder)); var repoName = "central"; //LibGit2Sharp add remote using (var repo = new Repository(absolutePath

What Java properties to pass to a Java app to authenticate with a http proxy

拈花ヽ惹草 提交于 2019-12-30 22:52:50
问题 I have a Java application that is trying to access a web service via http proxy. The Java app is 3rd party app for which we don't have access to source code. Its launch can be configured by passing Java launch parameters among other things. I am wondering what are the java properties that one can pass so that the app can use the logged in user's NTLM credentials to authenticate proxy connections? When I passed https.proxyHost and https.proxyPort (i.e. -Dhttps.proxyHost=abcd ... to jvm command

How to run NUnit Runner in Atlassian Bamboo with NUnit 3?

≡放荡痞女 提交于 2019-12-30 06:26:25
问题 I used NUnit Runner in Atlassian Bamboo (latest version) with NUnit 2 but after upgrading to NUnit 3 it is no longer working. It appears something changed with the command line in NUnit 3. Anyone know how to make NUnit 3 work in Atlassian Bamboo? Or could the NUnit devs consider backward compatibility for this breaking change? I get the following error: Invalid argument: -xml=TestResults-Rev_02f5436a0a70cd539bd3b77218fb48cbe3262954-Build_12.xml 回答1: The simplest solution is to create a bat

'Portable.BouncyCastle' already has a dependency defined for 'System.Collections'

北战南征 提交于 2019-12-25 01:19:32
问题 This error occurs on the Bamboo build server during a command that restores my solution's NuGet packages. I can bypass this error by disabling the package restore task; however, this is only a temporary fix. Is there any way I can check if the dependency exists while running the task? This error occurs before MSBUILD is running. I am using .NET 4.5 回答1: The already has a dependency defined for error when installing a NuGet package is due to a bug in older versions of NuGet. You should look at

How to use Azure kudu zipdeploy from a Bamboo deployment server

二次信任 提交于 2019-12-24 10:33:19
问题 I am trying to find a way to deploy an app service update to an Azure app service from a Bamboo deployment server script task using PowerShell. I am running into a problem with the authentication part. Note: Credit to https://markheath.net/post/deploy-azure-webapp-kudu-zip-api for the script ideas. Below is my PowerShell script. $PublishingUsername = ["The value of the userName property name in the Azure PublishSettings file"] $PublishingPassword = ["The value of the userPWD property name in