Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • Executions in error state but stage completes

    Support buildmaster
    3
    0 Votes
    3 Posts
    0 Views
    ?
    Hi Matt, If it's not too much trouble, what time did the executions start in the stage that unexpectedly succeeded? It should say in the Deployments section of the package page. (I'm mainly wondering if they started on the same second or on different seconds.)
  • Update to NugetServer?

    Support buildmaster
    9
    0 Votes
    9 Posts
    6 Views
    ?
    Thanks Ben! it works now
  • Maps do not work

    Support otter buildmaster
    2
    0 Votes
    2 Posts
    18 Views
    ?
    There are some bugs using map variables within OtterScript in v5.5.3; these have since been resolved.
  • Email Notification Not Working

    Support buildmaster
    2
    0 Votes
    2 Posts
    2 Views
    ?
    Thank you for the report - this issue (BM-2370) was fixed in a later version.
  • $variables in Approvals for BuildMaster

    Support buildmaster
    2
    0 Votes
    2 Posts
    2 Views
    ?
    Currently variables are not evaluated in pipelines. I'm not exactly sure on the pipelines/application setup you have, but you might be able to get away with using the Variable Value Promotion Requirement which forbids deployment past a certain stage if a Package Variable named IsReleased is not true. Combined with the Set-ReleaseVariable operation in the plan assigned to the release stage, you should be able achieve what you want, e.g.: Set-ReleaseVariable( Variable: IsReleased, Value: true, Release: $ReleaseNumber, Package: $PackageNumber );
  • READ_COMMITTED_SNAPSHOT on SQL Server

    Support buildmaster sql-server proget
    2
    0 Votes
    2 Posts
    7 Views
    ?
    We don't support doing this sort of tweaking on the ProGet database; it might work, but we don't test it so I can't say.
  • 0 Votes
    2 Posts
    13 Views
    ?
    The release/deploy API is secured by API keys, not by username/password. When you configure an API key, you can determine which access that API key has. Treat those API keys like passwords, and share them only with people you trust.
  • Supporting certificate based authentication

    Support buildmaster proget
    1
    1 Votes
    1 Posts
    8 Views
    No one has replied
  • SQL Collation Requirements

    Support proget buildmaster
    2
    0 Votes
    2 Posts
    5 Views
    ?
    That is the requirement; the installer requires SQL_Latin1_General_CP1_CI_AS collation in the database, so if it's not that (and the installer can't change it), you won't be able to install ProGet.
  • FTP files to linux server

    Support ftp artifacts buildmaster
    2
    0 Votes
    2 Posts
    7 Views
    ?
    The FTP extension can help with this
  • Git extension not able to pull down repository

    Support git buildmaster
    4
    0 Votes
    4 Posts
    7 Views
    ?
    If you want to extend the life of that directory so you can view it in process explorer you can do something like this in the deployment plan: with async { Git-GetSource( # ... ); } with async { Sleep 1000; } await; That will keep the directory around for long enough to examine the file locks, and the deployment can be cancelled when finished.
  • Nuget variable

    Support nuget buildmaster
    2
    0 Votes
    2 Posts
    2 Views
    ?
    The NuGetExePath variable is used by the NuGet operations (like Install-Package). So you would need to use that ahead of MsBuild, and then not do the NUGet restore in your msbuild. Your MsBuild script most likely hard-codes a path to NuGet.
  • Problem using PSEval

    Support buildmaster
    2
    0 Votes
    2 Posts
    17 Views
    ?
    Try: set $regExists = $PSEval("Test-Path $regPath");
  • 0 Votes
    2 Posts
    10 Views
    ?
    Hello Megha, In PowerShell, to create a JSON object key with a dollar sign in it, you need to use this syntax: "`$KeyName" So your object would look like this: $CreatePackageParam= @{releaseNumber=$ReleaseNumber; applicationName=$ApplicationName; "`$SiteName"=$SiteName; } Otherwise, PowerShell replaces both instances of $SiteName with the value in that variable.
  • 0 Votes
    2 Posts
    13 Views
    ?
    You are using it correctly; there is a bug in that particular endpoint that ignores the variables for non-legacy plans, see: Issue BM-3077
  • How to use MSBuild 15.0

    Support msbuild buildmaster net
    2
    0 Votes
    2 Posts
    158 Views
    ?
    See: https://stackoverflow.com/questions/45063717
  • 0 Votes
    2 Posts
    90 Views
    ?
    Hi Megha, Per the Release & Package Deployment API, you must POST or PUT to this url. On the Invoke-RestMethod CmdLet, you specify this using the -Method argument. $response = Invoke-RestMethod 'http://<<BuildMasterServer>>/api/releases/packages/create?releaseNumber=1.0.2&applicationName=DeployWWMapping&key=5WRTeJcctiY32u2bEqTb4Q==' -Method Post
  • Install Multiple Agents On Same Service Box

    Support agents buildmaster
    3
    0 Votes
    3 Posts
    22 Views
    ?
    I was trying the Otter instructions link provided by you. When we execute step 4 and try to execute command: “InedoAgentService.exe install” We get the error message saying that InedoAgentSVC already exists.. attempting to uninstall it. Which means it first removed the already existing and running InedoAgentSVC and then created the same again. But it could not install it since I checked in services.msc and there was no such service(i.e, the already existing service was gone). I tried to do it as below as well: Since the InedoAgentSVC(Inedo agent service) had already uninstalled, I tried to install it again but this time with different port(used 8080 instead of 46336) so that we can use port 46336 for second agent installation as per otter instructions. I changed the port for Inedo agent and the service was installed successfully but its name was still InedoAgentSVC, so I tried to change name of service to InedoAgentSVCMain in app_appsettings.config and installed the Inedo agent again. It did not get installed and threw error. The point that comes out is that both Otter and Inedo Agent generate same service with name InedoAgentSVC. If we install either of these and then try to install the other one, the first one gets uninstalled. So as a conclusion, we can have only one of these agents in a machine. Please let me know if I am missing something or some step as I am still not able to use multiple agents on same service box.
  • Promote Build

    Support artifactory buildmaster
    6
    0 Votes
    6 Posts
    26 Views
    ?
    In Properties, @(type: txt, sha1: <sha1 value>, md5: <md5 value>, name: Artifact7.txt) should be @(%(type: txt, sha1: <sha1 value>, md5: <md5 value>, name: Artifact7.txt)). If you're more used to JSON, those are equivalent to ["type: txt","sha1: <sha1 value>","md5: <md5 value>","name: Artifact7.txt"] and [{"type":"txt","sha1":"<sha1 value>","md5":"<md5 value>","name":"Artifact7.txt"}], respectively.
  • 0 Votes
    4 Posts
    9 Views
    ?
    Hello Megha, That URL looks correct. Are you doing a POST or PUT request, or a GET request? If you're visiting the page in your browser, that's a GET request and it won't work. Either POST or PUT will work, though. You can use a web hook to automate this through TFS.