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!

  • Support status of BuildMaster 4.9.10

    Support buildmaster
    2
    0 Votes
    2 Posts
    3 Views
    ?
    Good catch, that's a bug on the auto-generated versions page. Here is a better statement, which we've had for a while on our BuildMaster Roadmap Page: v4 is semi-retired, which means that we will provide very limited support to v4 users who have not yet upgraded, and will provide assistance in performing upgrades. However, we will no longer ship maintenance releases, patches, or other changes. I emboldened the key part; we're here to help, so please schedule some time with our engineers to help you upgrade. And for reference, please see KB#1151: Upgrading from BuildMaster v3 and v4
  • Execute Shell Script on linux ignores return code

    Support buildmaster
    2
    0 Votes
    2 Posts
    15 Views
    ?
    Hi, How would you like the error code handled? Would you like the option to store it in a variable, be used to determine success, or just logged somewhere? I believe we can add this by updating the Linux extension. As a workaround, you may be able to use the Exec operation, which already has exit code handling.
  • 0 Votes
    2 Posts
    11 Views
    ?
    That error is coming from the SSH library that BuildMaster uses to connect, and offhand I don't know the causes (aside from obvious). One possibility is that username/password isn't enough, and you need to send a certificate. Putty may already be configured to do this. But can you enable SSH logging on your Linux box? This way, you can see the problems of incoming connections and we can further help from there.
  • I can't even build!

    Support buildmaster
    3
    0 Votes
    3 Posts
    7 Views
    ?
    Okay, I've resolved it. The problem was that I'd put in the project name without a path - so BuildMaster was assuming a default path. The message was really unclear. It would be beneficial to allow the user to populate that field with a 'browse' function to find the solution/project or, at the very least, have some validation on the input to ensure you've entered something which looks like a full file path.
  • ProGet Manual install

    Support buildmaster proget-installation
    2
    0 Votes
    2 Posts
    12 Views
    ?
    I would try reinstalling it. I didn't have to create the site in IIS.
  • GIT unable to get source

    Support git bitbucket buildmaster
    3
    0 Votes
    3 Posts
    18 Views
    ?
    Eric, thank you! That was the issue, I didn't know about that issue.
  • PowerShell execution error

    Support buildmaster powershell
    3
    0 Votes
    3 Posts
    16 Views
    jraschJ
    Typically this is caused by a Windows extension that hasn't been updated to the latest version following a BuildMaster v6 upgrade.
  • 0 Votes
    2 Posts
    11 Views
    jraschJ
    The problem is that OtterScript attempts to parse those variables first. Just use quotes: set $foo = true; set $bar = true; set $foobar = $PSEval("$foo -and $bar"); Log-Information `$foobar = $foobar; # prints: $foobar = True
  • 0 Votes
    2 Posts
    11 Views
    jraschJ
    It does not exist yet, I've filed BM-3326 to add it in v6.1.2
  • 0 Votes
    2 Posts
    7 Views
    ?
    At of ProGet 5.1, that's the only way. We may add support for this in a future version if we get more feature requests
  • Impossible to install

    Support buildmaster
    2
    0 Votes
    2 Posts
    7 Views
    Jonathan.EngstromJ
    I have had issues in the not too distant past, maybe 3-6 months ago upgrading one of my installs of Otter to the latest version, 2.0.9 if memory servers. I would concur that the installs/upgrades could use some love. There definitely should be a 'cleanup' tool to remove all traces of Inedo installs. Ron, I wouldn't give up on using the products. Maybe you can spin up a vm to try this out on as well?
  • 0 Votes
    2 Posts
    7 Views
    atrippA
    You can edit the connection string using Inedo Hub; it should be listed right under the Configuration tab. Note you will need to stop/start the service and web app afterwards. Might be best to stop both beforehand, however, so you don't have two potentially active databases.
  • 0 Votes
    4 Posts
    12 Views
    T
    Schedule Triggers haven't been replaced; we only really consider those legacy because of the way the variables are handled by them. See also: https://inedo.com/support/questions/9736
  • 0 Votes
    4 Posts
    15 Views
    jraschJ
    Thanks, I've filed this as a bug here: BM-3307
  • 0 Votes
    4 Posts
    27 Views
    J
    Thanks for the suggestion, it's handy to know that's possible (with a bit of scripting to move packages into the top level directory). It also seems to work pretty well running the Feed Cleanup under 4.7.14 and then upgrading.
  • Cancelling an execution just hangs

    Support buildmaster
    2
    0 Votes
    2 Posts
    14 Views
    ?
    Keep in mind that Timeout (or cancellation in general) is not guaranteed, and requires that the task (generally, an operation) properly check for a cancellation token. For example, an operation that simply did a Thread.Sleep for 1000 seconds could not be timed out after 10 seconds. In a case of a stuck execution, restarting the service is the best way to clear things. So, we'd need more context to identify if it's a bug in the operation, or simply something that isn't support.
  • 0 Votes
    9 Posts
    88 Views
    S
    The root of the issue is the NuGet team's decision to force SemVer: https://github.com/NuGet/Home/issues/3050
  • Legacy Build Triggers

    Support buildmaster
    4
    0 Votes
    4 Posts
    26 Views
    ?
    Just as a quick update, this was added to our roadmap as an item we will be including. It'll be implemented likely using the same mechanisms as the Repository Monitors, so it gives a lot more flexibility with regards to what it can do (create builds, create releases, etc), and also uses cron-syntax for scheduling so you have even more flexibility. No ETA, but I've added this post to the project plan so that we will upate it once it gets started.
  • Unable to push package from BuildMaster to ProGet

    Support buildmaster proget
    2
    0 Votes
    2 Posts
    16 Views
    atrippA
    Just to close this post: this was fixed in InedoCore 1.0.12, after diagnosing the issue on a ticket (EDO-5683).
  • Execute SQL scripts on Agent Server

    Support buildmaster net sql-server agents
    3
    0 Votes
    3 Posts
    18 Views
    A
    The SQL server and the application are both on server 'Production' and the application is successfully retrieving data from the SQL server. The connection string used in the application configuration is the same connection string being used in the SQL connection in Buildmaster. It is using a SQL account, so not integrated. Here is a redacted connection string: - Data Source=*************;Initial Catalog=*************;User Id=*************;Password=*************;MultipleActiveResultSets=true;