Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. buildmaster
    Log in to post

    • ?

      SCP credentials
      Support • buildmaster • • Jason Smoliak  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      We have responded to this via the ticket you submitted, can you verify that you received it? Today we switched to a new automated ticketing system and I want to verify whether you received an email update or not from the system. Here was the response: In BuildMaster v4, these are configured on the Admin > Extensions > Source Control Providers page for the specific provider in the URL of the remote repository itself, e.g. https://user:pass@example.com/remote.git
    • J

      Call Operation with Dynamic Options
      Support • buildmaster • • jharbison  

      4
      0
      Votes
      4
      Posts
      0
      Views

      ?

      This has been added as BM-3004, and is currently scheduled for 5.6.10.
    • J

      Variable as Lock Token
      Support • buildmaster variables • • jharbison  

      5
      0
      Votes
      5
      Posts
      11
      Views

      J

      That operation looks exactly like what I am trying to achieve. What is the behavior when all of the servers in the pool have been acquired? Does current execution wait or does an error get thrown?
    • J

      When can we expect next BuildMaster update
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      We anticipate the end of this week or early next!
    • J

      Retrieve All Release Variables for a Given Release
      Support • buildmaster variables releases • • jharbison  

      3
      0
      Votes
      3
      Posts
      8
      Views

      ?

      Don't use that, use the Variables API instead.
    • ?

      Unit Tests Results Summary
      Support • buildmaster mstest unit-tests nunit • • Jason Smoliak  

      4
      0
      Votes
      4
      Posts
      5
      Views

      ?

      For re-use: https://github.com/rockpooldigital/bmx-testresultssummary Cheers again, Jamie
    • ?

      How to get current package number in context
      Support • buildmaster packages • • Jason Smoliak  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      If you call $PackageNumber with no arguments, then the curent one in context is returned. The arguments allow you to find a package number for another release in potentially another application.
    • ?

      Conditional stage in pipeline
      Support • buildmaster variables releases • • Jason Smoliak  

      2
      0
      Votes
      2
      Posts
      3
      Views

      ?

      Your best bet would be to simply wrap the deployment plan that gets called in a "if $RestartServer". I agree about visibility of skipping, but it's not supported at this time.
    • J

      Feature Request - Specify Release Template When Using Release API
      Support • buildmaster api templates • • jharbison  

      2
      0
      Votes
      2
      Posts
      7
      Views

      ?

      We'll add this, likely as a separate endpoint i.e. api/releases/create-from-template or something like that. It will appear as BM-2384 in the release notes (likely before it is actually documented on inedo.com).
    • ?

      Get git source chekout before fetch
      Support • buildmaster git • • Jason Smoliak  

      5
      0
      Votes
      5
      Posts
      13
      Views

      ?

      The extension should be available now.
    • ?

      Build/Deploy Condition
      Support • buildmaster deployment-plans • • Jason Smoliak  

      4
      0
      Votes
      4
      Posts
      17
      Views

      ?

      Well, so that's basicaly the idea of a deployable; you could have a web deployable and a database deployable. Of course, the same pipeline is used, but you use a for deployable xyz block to determine whether particular things execute. You could use this, in combination with pipeline targeting, to accomplish this. They would still follow same linear pipeline path, but some stages would only deploy one or the other. Otherwise, you can use multiple applications, and then the create- and deploy-package operations. Down the line, we will have multi-release projects that allow you to tie together multiple releases of multiple applications.
    • J

      Question re Pipeline Servers or Roles setting
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      3
      Views

      ben

      It looks like running a pipeline on a server role does not correctly set the $RoleName variable. I've filed this as BM-2381 and it is fixed for the next version of BuildMaster.
    • ?

      Multiple ReferencePaths in MSBuild
      Support • buildmaster • • Jason Smoliak  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      It's hard to say; 4.6 is quite old, so of course I recommend to upgrade so that it fixes any issues that might be there. But even in 4.6, the action just wrapped the commandline. So, t's about finding what and how the commandline is being used with the parameters you're specifying... You should be able to find the code on an old release here -- http://github.com/inedo/bmx-windowssdk
    • J

      Returning a list from a PSEval execution
      Support • buildmaster powershell • • jstarbird_7831  

      12
      0
      Votes
      12
      Posts
      29
      Views

      ?

      Thanks. That of course fixed it.
    • J

      Proper script to create Map variable
      Support • buildmaster • • jstarbird_7831  

      5
      0
      Votes
      5
      Posts
      11
      Views

      ?

      Yes, that is what I'm looking for. Sorry I didn't say it that way but I didn't think that was possible based on the docs, I thought having the sub-types like that was only in the maps. I tried that out and it works perfectly for me. Thanks!
    • ?

      Enumerate over all config files
      Support • buildmaster deployment-plans • • Jason Smoliak  

      2
      0
      Votes
      2
      Posts
      11
      Views

      ?

      Hi Jason, there's not currently... but I've added a request to get this in a maintence release under BM-2374 @ConfigurationFiles([AppName]) @ConfigurationFileInstances(configurationFileName, [AppName])
    • J

      Raise Error Syntax
      Support • buildmaster error documentation example • • jharbison  

      3
      0
      Votes
      3
      Posts
      5
      Views

      ?

      That is exactly what I was looking for. Thank you.
    • J

      Access to log during plan execution
      Support • buildmaster • • jstarbird_7831  

      7
      0
      Votes
      7
      Posts
      12
      Views

      ?

      I found the issue, just didn't think about looking at the IIS settings but that clued me in. I needed to use Windows authentication via Powershell. For those that might hit this in the future this is the piece of code that did the trick: $pwd = ConvertTo-SecureString $userPwd -AsPlainText -Force $creds = New-Object System.Management.Automation.PSCredential($userName,$pwd) $Response = Invoke-WebRequest -URI $URL -Credential $creds
    • J

      Using Powershell documentation header
      Support • buildmaster • • jstarbird_7831  

      4
      0
      Votes
      4
      Posts
      2
      Views

      J

      thanks, yes I saw that and that is what I am using. I guess the expectation I had was to see the description or synopsis in the dialog when I am adding it a plan. Once it's in the plan is useful, the way it displays now, but it's when it's being added that the person adding it needs the info. I'll just submit a feature request, it's not a major thing just be nice for people who use them later and may not know exactly what they do without opening the full script itself or reading some other doc outside BM
    • J

      Question about Deploy Artifact operation
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      By default, all you need is the name. The following operations are equivalent: Deploy-Artifact my-artifact-name; # and... Deploy-Artifact my-artifact-name ( To: $WorkingDirectory, Application: $ApplicationName, Release: $ReleaseNumber, Package: $PackageNumber, Deployable: $DeployableName, DeployAsZipFile: false, TransferAll: false, DoNotClearTarget: false, Verbose: false ); This should be mentioned in the auto-generated docs but since it is not, I'll put in a note to do that :)
    • 1
    • 2
    • 14
    • 15
    • 16
    • 17
    • 18
    • 52
    • 53
    • 16 / 53