Navigation

    Inedo Community Forums

    Forums

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

    • ?

      Copy Files operation without explicit value for Includes says "Copy Everything" in the plan editor but does not copy contents of folders
      Support • buildmaster • • Aris  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      thanks for the report; the label should say "top-level items", not "everything".
    • ?

      Error in UI to edit PSCall operation after upgrade to 5.6.2 from 5.6.1
      Support • buildmaster • • Aris  

      7
      0
      Votes
      7
      Posts
      181
      Views

      ?

      There is no erros in that log.
    • J

      Execute-PowerShell Throws Exception
      Support • buildmaster powershell • • jharbison  

      3
      0
      Votes
      3
      Posts
      8
      Views

      ?

      Thanks. That was the problem. After updating the Windows extension from 5.5.0 to 5.6.0 the powershell command is working again.
    • ?

      What format should TimeSpan values be in for Ensure-AppPool
      Support • buildmaster • • Aris  

      4
      0
      Votes
      4
      Posts
      4
      Views

      ?

      The problem is the CpuResetInterval parameter; it is missing the attribute to identify minutes, so it is treating it as seconds. I fixed this here, and it will be fixed in the next release of the extensionhttps://github.com/Inedo/inedox-windows/issues/10 AS a work-around, you can just specify the value in seconds (300 instead of 5). But this will become 300 minutes after you upgrade, so might be best to not set it for now.
    • ?

      Push package ,but get error (401)
      Support • buildmaster • • Aris  

      2
      0
      Votes
      2
      Posts
      6
      Views

      ?

      A 401 means not authorized; so, you will want to make sure you are using proper credentials and , if you have integrated authentication configured, then it's working for the account using the NuGet push.
    • C

      Forcing 32 bit powershell
      Support • buildmaster powershell • • clint.jenkinson_0617  

      2
      0
      Votes
      2
      Posts
      6
      Views

      ?

      BuildMaster runs the PowerShell scripts in-process, so it's not possible. The method you've identified (running a separat eprocess) is the best way to accomplish it I think.
    • J

      Via HTTP Post, unable to promote ProGet package
      Support • proget buildmaster • • jstarbird_7831  

      20
      0
      Votes
      20
      Posts
      69
      Views

      ?

      Discussion should be moved to a new post or followed here: http://inedo.com/support/questions/6554
    • ?

      Enabling BuildMaster JSON API?
      Support • buildmaster api documentation • • Aris  

      4
      0
      Votes
      4
      Posts
      22
      Views

      ?

      The Release & Deployment API was added in BuildMaster v5.5 so you'd have to upgrade to use it. As for the /api/json page, it shouldn't require a key to view the methods so there's a bug there and I've added that to our internal issue tracker.
    • ?

      Bundled software releases?
      Support • buildmaster releases • • Aris  

      2
      0
      Votes
      2
      Posts
      3
      Views

      ?

      Yes. We do this ourselves when we release BuildMaster as the installer relies on the BuildMaster software itself, a few independent embedded extensions with differing release numbers, and also handles releasing a source code package to inedo.com so Enterprise users can download it. The way to do this is to create a meta-application of sorts, and then create deployment plans in that application that create packages or deploy packages for specific releases in other applications. Here are some of the operations that would be useful: http://inedo.com/support/documentation/buildmaster/reference/operations#BuildMaster
    • ?

      SCM Triggers: Target OID for the reference doesn't exist on the repository
      Support • buildmaster triggered-builds source-control github • • Aris  

      2
      0
      Votes
      2
      Posts
      107
      Views

      ?

      This is an internal GIt error, and can usually be resolved by just deleting the local repository (under the TMP\SrcRepos folder).
    • ?

      Nuget Extension Update
      Support • buildmaster • • Aris  

      4
      0
      Votes
      4
      Posts
      0
      Views

      ?

      Is this for a legacy plan action or a OtterScript operation? If it's for a Legacy Plan, you can edit the Configuration Profile for the NuGet extension and specify a path to your custom NuGet.exe in there, and actions will use that instead of the default one the extension ships with -- this way you don't need to overwrite anything. If it's for an OtterScript plan, you can override the default location by creating a $NuGetExePath variable at global or server level with the value being the path to your version of nuget.exe on the server. This is the new style of configuration that replaces legacy Configuration Profiles.
    • ?

      Cannot uninstal .NET Recipes
      Support • buildmaster • • Aris  

      3
      0
      Votes
      3
      Posts
      1
      Views

      ?

      All set. I was just deleting from the webtmp
    • ?

      Using server variables in a config file
      Support • buildmaster variables configuration-files variable-servers • • Aris  

      2
      0
      Votes
      2
      Posts
      6
      Views

      ?

      This appears to be a bug - it should work exactly as you have stated. Our internal issue ID for this is BM-2281 and should be released in the next maintenance (or minor) version (whichever comes first).
    • J

      Exception Accessing MapItem
      Support • buildmaster variables • • jharbison  

      2
      0
      Votes
      2
      Posts
      7
      Views

      ?

      The way is correct, but it appears there's a bug in the evaluation while accessing the variable; this will be fixed in [BM-2278], which brought code in from Otter that fixes this bug.
    • ?

      Build mvc project
      Support • buildmaster net microsoft msbuild • • Aris  

      6
      0
      Votes
      6
      Posts
      19
      Views

      ?

      You can Log-Information to see what $WorkingDirectory is. Unless you set a value, it will be something like C:\BuildMaster\_SVCTMP\_Ennn\D0 where nnn is internal identifier of the execution. Log-Information Working-Directory is $WorkingDirectory;
    • J

      Inline PSExec Variable Evaluation
      Support • buildmaster variables • • jharbison  

      3
      0
      Votes
      3
      Posts
      15
      Views

      ?

      Thank you. The source code makes it explicitly clear what is going on. I was assuming that the OtterScript variables were being parsed out directly from the text input rather than being passed to the PSParser before hand. This also explains my troubles with the List and Map variable types as I was attempting to utilize them inline in my PSExec steps. I would suggest mentioning this parse behavior in the PSExec documentation link text and in the "Inline Script Execution" section of link text
    • D

      How to prevent concurrent releases for a single application
      Support • buildmaster releases • • dwynn_6489  

      6
      0
      Votes
      6
      Posts
      11
      Views

      ?

      Yes; that behavior was added in v3 because there were a lot of execution collisions (the default working directory used the ApplicationId). This was undesired by nearly all users. The v5 engine uses ExecutionId for the default working directory,, and any collisions outside of working directories should be resolvable with a global lock.
    • J

      Parallel Loop Block
      Support • buildmaster workflows • • jharbison  

      2
      0
      Votes
      2
      Posts
      12
      Views

      ?

      Yes indeed, take a look at Asynchronous Blocks. Here is how you would do it in OtterScript: foreach $value in @list { with async { ... items ... } } await;
    • ?

      No packages listed on VS2015
      Support • buildmaster visual-studio • • Aris  

      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • ?

      Default email in my event listeners
      Support • buildmaster notifiers • • Aris  

      3
      0
      Votes
      3
      Posts
      7
      Views

      ?

      I agree whoever owns the event listener, should get the email. What I mean is the default email address doesn't seem to work. E.g., ideally, if I create a event listener, and expect that I should be the one who owns the listener, therefore gets the email, without explicitly putting in my email address to the box again. Currently, I'd have to enter my email address again to get the email, that's kind of unexpected.
    • 1
    • 2
    • 17
    • 18
    • 19
    • 20
    • 21
    • 52
    • 53
    • 19 / 53