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!

  • Enhancement for all-application page ?

    Support buildmaster
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Extension errors

    Support error buildmaster
    2
    0 Votes
    2 Posts
    6 Views
    jraschJ
    This has also been reported in our Jenkins extensions issues section, can you take a moment to respond to the questions I posed here? https://github.com/Inedo/inedox-jenkins/issues/26#issuecomment-454188149
  • Promote Build Using API

    Support buildmaster api promotions builds
    2
    0 Votes
    2 Posts
    19 Views
    jraschJ
    Here is a working PowerShell example (v6.1+): Invoke-RestMethod -Method POST -Uri "http://{bmserver:port}/api/releases/builds/deploy?applicationName=ApiTest&releaseNumber=1.2.3&buildNumber=1&key=<api-key>" For pre-v6.1 versions, the equivalent is: Invoke-RestMethod -Method POST -Uri "http://{bmserver:port}/api/releases/packages/deploy?applicationName=ApiTest&releaseNumber=1.2.3&packageNumber=1&key=<api-key>" I have also put in a doc change request to clarify the endpoint names. Additional note: -UseDefaultCredentials would be required if Integrated Authentication were enabled.
  • How to log array values in otter?

    Support buildmaster otter
    3
    0 Votes
    3 Posts
    10 Views
    D
    That worked great. Thanks!
  • Forbidden on Push

    Support buildmaster nuget
    2
    0 Votes
    2 Posts
    23 Views
    ?
    If it still doesn't work after you've granted anonymous to the feed, then one possibility is that you have WebDAV (caused from a Windows Update?), or a proxy server blocking the PUT request. I've seen that quite a bit..
  • Versioning for 4 part.

    Support buildmaster
    2
    0 Votes
    2 Posts
    9 Views
    ?
    You can either use the Release Name for this, or you can use a combination of Build and Release number to create a four part version number ($ReleaseNumber.$BuildNumber)
  • 0 Votes
    4 Posts
    21 Views
    jraschJ
    Aha, it will also be included in BuildMaster... not sure why I got stuck on Otter. I guess it was on my mind because we just had a maintenance release today :) This feature is also scheduled for BuildMaster v6.1.10 on July 19
  • 0 Votes
    2 Posts
    11 Views
    T
    Thank you for the report; this will be resolved by the following issue: BM-3364
  • Feature - Add a variable PipelineStepName

    Support buildmaster
    2
    0 Votes
    2 Posts
    6 Views
    ?
    Great idea :) See BM-3278
  • Does Proget Support c++ packages?

    Support buildmaster
    2
    0 Votes
    2 Posts
    15 Views
    ?
    Yes! You can use either NuGet or Universal Packages to store your C++ code and packages, and those host those in ProGet.
  • One release assigned to multiple pipeline ?

    Support buildmaster
    3
    0 Votes
    3 Posts
    5 Views
    ?
    Just to clarify, you can create releases on the "Releases" tab, just "Create New Release". You can have multiple simultaneous releases per application going on, which is ideal for a scenario you describe
  • 0 Votes
    2 Posts
    6 Views
    ?
    InedoCore 1.0.10 was accidently released; it was a pre-production version and should not have been shipped. It's since been removed. However, you identified the correct remediation steps: manually restore the old version of the extension. Sorry for the inconvenience.
  • 0 Votes
    3 Posts
    22 Views
    ?
    I ended up using powershell to add variables to a properties file of env.properties. Then used the "inject environment variables" post build step to add the file with those variables to by environment. #Powershell "APP_VERSION=$appVersion RELEASE_NUMBER_VAR=$releaseNumber IIS_APP_ROOT_NAME=$iisAppRootName APP_EMAIL=$appEmail" | Out-File env.properties -Encoding ASCII Then then used the Get-Release API to check and see if my selected release was a valid release. If not I created it with the Create-Release API. Then used the Inedo_BuildMaster Plugin for jenkins. Create BuildMaster Package - Post Build Step Variables: appEmail = ${APP_EMAIL} appVersion = ${APP_VERSION} buildNumber = ${BUILD_NUMBER} buildType = ${BuildTypeParam} iisAppRootName = ${IIS_APP_ROOT_NAME} iisHostNamePrefix = ${BuildTypeParam} After I figured out myself how to inject the Variables and use them properly this rout was much better because it let me know when the package was done deploying, if it failed, showed me the deployment log on failure and failed my Jenkins Job on Failure. Thank you for your answer though Josh!
  • Chanhing the queues and working agents

    Support net buildmaster
    2
    0 Votes
    2 Posts
    9 Views
    atrippA
    I'm sorry but I'm not understanding what you mean by "queues" or "hangfire"...
  • BuildMaster upgrade 6.0.11 -> 6.0.12

    Support buildmaster
    6
    0 Votes
    6 Posts
    5 Views
    ?
    Glad to see it's working; but just as an FYI, the installer does not have any code that can delete the database. That's only in the uninstaller program, and that needs to be manually run with double-confirmation (in the UI).
  • ProGet development language

    Support buildmaster
    2
    0 Votes
    2 Posts
    3 Views
    ?
    ProGet is primarily developed in .NET (C#) and SQL Server. The front end, of course, uses JavaScript (TypeScript). Our other products use the same technologies
  • Error iterating list of strings

    Support buildmaster
    5
    0 Votes
    5 Posts
    18 Views
    T
    This is also fixed (BM-3271) starting in v6.1.0
  • Delete-Files does not work

    Support buildmaster
    4
    0 Votes
    4 Posts
    10 Views
    ?
    I've deleted FTP extension and restarted both BM services. After restart it works properly. Thank you.
  • Dbupdater.exe error

    Support buildmaster net
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • 0 Votes
    5 Posts
    26 Views
    J
    Thanks, it is working now.