Navigation

    Inedo Community Forums

    Forums

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

    • ?

      Sequential Deployable Execution
      Support • buildmaster deployables • • Tim Daborn  

      5
      0
      Votes
      5
      Posts
      12
      Views

      ?

      Yes, I believe that does make sense. If I want to be able to control order of execution, it sounds like I should turn my deployables into their own separate child applications. Then I can specify order of deployment of each child application within whatever "master" application I am deploying.
    • ?

      API not reading XML properly
      Support • buildmaster api • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      12
      Views

      ?

      The XML you have: <ReleaseDeployables><ReleaseDeployables> should be <ReleaseDeployables><ReleaseDeployable> (notice the missing s on the inner element).
    • ?

      TF400324 TFS Error
      Support • buildmaster tfs • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      24
      Views

      ?

      Can you verify that: the TFS services are accessible over port 80 there is no firewall blocking that port access to the root path is open (e.g. /tfs, you can test this by trying http://windows2012r2-1/tfs/DefaultCollection instead [or whatever collection name you're looking for])
    • ?

      Managing Configuration Files
      Support • buildmaster source-control configuration-files • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      5
      Views

      ?

      In .net, it's usually best to split out your web.config files into multiple files using the configSource option. So, <appSettings configSource="web_appSEttings.config" /> This way, you only need to edit web_appSettings.config when a key changes.
    • ?

      Would like builds to start at 1.0
      Support • buildmaster builds • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      7
      Views

      ?

      The 0.0 release is merely a setup release, the number for that cannot be set. However, you can cancel that release and simply create a new one and enter in 1.0 for its release number.
    • ?

      Deploy an entire SQL Server database?
      Support • buildmaster databases • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      9
      Views

      ?

      Can you be more specific? What do you mean by, "entire database"? The built-in Change Scripts feature will allow you to script an entire database if needed, and ensure change scripts get run once and only once.
    • ?

      Execute NODE JS command
      Support • buildmaster • • Tim Daborn  

      7
      0
      Votes
      7
      Posts
      167
      Views

      ?

      Thanks Andy ..server restart did the trick...cheers!!
    • ?

      Assign Application Pool to Virtual Directory (Convert to Application)
      Support • buildmaster • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      3
      Views

      ?

      It's possible via IIS / appcmd, but the BuildMaster action does not support this behavior.
    • ?

      SCM trigger build (SVN)
      Support • buildmaster triggered-builds • • Tim Daborn  

      3
      0
      Votes
      3
      Posts
      8
      Views

      ?

      Thank you Steve. i have figured it out. it was downloading the code in different path. Thanks Again
    • ?

      Ensuring a Deployable must be run with another Deployable enabled?
      Support • buildmaster deployables predicates • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      10
      Views

      ?

      Predicates in combination with variables (e.g. the Set Variable Value action, $BackupDB = true, then check for that later as necessary) are a good idea for the meantime. We've had requests that imported deployables should be allowed to be dependencies and that feature is scheduled for a future version.
    • ?

      Renaming a deployable in a duplicated application
      Support • buildmaster • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      Thanks for the bug reports. This renaming bug will be fixed in the next release. It's only a SQL/stored proc change, so if you would like a patch to fix it against your DB, we can send it to you. We've also fixed the broken link and that will be updated on our next website push. Thanks for letting us know!
    • ?

      Integration build initiated after production release
      Support • buildmaster • • Tim Daborn  

      4
      0
      Votes
      4
      Posts
      0
      Views

      ?

      You can watch the service logs (Admin > service) to see how this "rouge" build is being created. The Scm Watcher will identify how it's specifically searching for changes, and what's causing the trigger to fire.
    • ?

      AppPoolIdentity Virtual Accounts in IIS 7.5+
      Support • buildmaster • • Tim Daborn  

      3
      0
      Votes
      3
      Posts
      2
      Views

      ?

      Issue #21 opened in Github. Thanks for the comments!
    • ?

      Deploy Artifact step just running endlessly
      Support • buildmaster error deployments • • Tim Daborn  

      3
      0
      Votes
      3
      Posts
      9
      Views

      ?

      Oddly, running the service in interactive mode seems to have solved the problem: the deployment is now complete. I didn't do anything but stop the service and start it interactively, and I didn't notice anything unusual in the output. It did look like it found the action and ran it, as far as I can tell, but didn't say what had been in the way.
    • ?

      Server variable issues
      Support • buildmaster variables • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      This is a known issue (BM-1546) for BuildMaster v4.3.8 and will be resolved in v4.3.9.
    • ?

      Why can't I delete a application?
      Support • buildmaster applications • • Tim Daborn  

      6
      0
      Votes
      6
      Posts
      7
      Views

      ?

      You could try calling the stored procedure directly via the SQL API: DECLARE @B VARBINARY(MAX) SET @B = CAST('yourname' AS VARBINARY) SET CONTEXT_INFO @B EXEC Applications_PurgeApplicationData @Application_Id or view it in SSMS to see the actual SQL.
    • ?

      All Build master agents' status is checking
      Support • buildmaster • • Tim Daborn  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      Were there any error messages before this happened? Either way, I would restart the BuildMaster service and web application. It also may be worth upgrading to the newest version to see if that helps.
    • ?

      Ssh private key format
      Support • buildmaster agents • • Tim Daborn  

      4
      0
      Votes
      4
      Posts
      137
      Views

      ?

      You can also get this error if you do not supply a valid private key passphrase for the private key.
    • ?

      Force Agent Update Missing From Agent Details
      Support • buildmaster agents • • Tim Daborn  

      4
      0
      Votes
      4
      Posts
      17
      Views

      ?

      Only the single agent port is required to be open. As a workaround, if you have BuildMaster database access, you can just set the status of the particular server to FORCE. If you have a custom extension, you could write a quick custom recipe that can do it as well - just implement the IServerRecipe interface for a RecipeBase object. You can find out how this works in the Creating an Auto-Deploying Custom Extension Application tutorial which contains a downloadable example project containing example recipe code.
    • ?

      Import plan - Nullable object must have a value.
      Support • buildmaster • • Tim Daborn  

      6
      0
      Votes
      6
      Posts
      3
      Views

      ?

      You'd have to disable the custom errors in all settings, but regardless, we believe the problem was that the clone procedure would fail if the database user did not have ALTER permissions on a certain table (don't worry, we weren't doing anything crazy -- just an identity insert). We've reworked them so that this is no longer a requirement. We'll have a maintenance release out today that should resolve it.
    • 1
    • 2
    • 35
    • 36
    • 37
    • 38
    • 39
    • 52
    • 53
    • 37 / 53