Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login
    1. Home
    2. jstarbird_7831
    3. Topics

    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!

    J Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 71
    • Posts 132
    • Groups 0

    Topics

    • J

      Access to log during plan execution

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      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

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      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

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      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 :)
    • J

      Variables questions

      Watching Ignoring Scheduled Pinned Locked Moved Support variables buildmaster
      6
      0 Votes
      6 Posts
      40 Views
      ?
      Yes that is a bug then. I'll submit a bug report.
    • J

      Issue with Jenkins Extension

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      2
      0 Votes
      2 Posts
      0 Views
      ?
      I found the solution. I had tried several different ways but finally found the right way. Just putting folder/job/jobname in the List Source made it work. The list won't auto show the job but you can type it in and it works.
    • J

      Auto deploy next stage not working

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster deployments variables
      2
      0 Votes
      2 Posts
      11 Views
      ?
      Release template values are currently only used by the user interface, as a means of assisting users enter key/value pairs (variables) for a release or package. They API does not reference these, but you can pass variables into the APi quite easily.
    • J

      Way to tell if a Stage is being auto deployed or not

      Watching Ignoring Scheduled Pinned Locked Moved Support deployment-plans buildmaster
      3
      0 Votes
      3 Posts
      15 Views
      ?
      Yes of course, smacking forehead now! Thanks!
    • J

      Does the Ensure or Get Proget Package work with non-universal feeds

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      3
      0 Votes
      3 Posts
      7 Views
      ?
      Alana, Might I suggest updating the documentation to state that. Currently it is specified for the Upload operation but not the other two.
    • J

      Can you use Credentials with Powershell scripts

      Watching Ignoring Scheduled Pinned Locked Moved Support powershell buildmaster
      3
      0 Votes
      3 Posts
      8 Views
      ?
      ah yes, sorry. I setup the creds a couple of months ago and forgot about that option. thanks.
    • J

      Jira integration failing

      Watching Ignoring Scheduled Pinned Locked Moved Support integrations jira buildmaster
      7
      0 Votes
      7 Posts
      12 Views
      ?
      Please disregard now. It's all working fine. Someone changed the issues I was seeing in Jira yesterday and moved them to another release, incorrectly, at about the same time I was viewing them. I got the legacy aspect figured out as well so all of future configs should be non-legacy. Thanks.
    • J

      How to handle non-semver versions with packages

      Watching Ignoring Scheduled Pinned Locked Moved Support feeds proget
      7
      0 Votes
      7 Posts
      9 Views
      J
      Thanks for clarifying that about the Nuget feeds. Awhile back I understood the behavior had been changed so new Nuget feeds did not function the same way. It was a discussion related to Jenkins so I may have misunderstood where the change was.
    • J

      Via HTTP Post, unable to promote ProGet package

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster proget
      20
      0 Votes
      20 Posts
      69 Views
      ?
      Discussion should be moved to a new post or followed here: http://inedo.com/support/questions/6554
    • J

      Is there a way to use legacy functions in new plans?

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster windows-sdk
      2
      0 Votes
      2 Posts
      6 Views
      ?
      You can use the Execute-LegacyAction Operation to do this; it inputs the XML-based configuration of the action. The easiest way to get this XML is to create a legacy plan with the desired action, then convert to OtterScript.
    • J

      Jenkins plugin launching BuildMaster specific jobs

      Watching Ignoring Scheduled Pinned Locked Moved Support jenkins buildmaster
      5
      0 Votes
      5 Posts
      18 Views
      J
      Oh ok, I thought it was done by you. I'll pester him about that then. Sorry about that. Thanks, Jon
    • J

      Issue using EnsureAppPool

      Watching Ignoring Scheduled Pinned Locked Moved Support iis buildmaster
      6
      0 Votes
      6 Posts
      13 Views
      ?
      It's scheduled for release later today. in the mean time, you can use PowerShell or not set that particular property that requires a timespan.
    • J

      MSBuild failing

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster msbuild
      7
      0 Votes
      7 Posts
      26 Views
      ?
      Yes, that would do it; the $WorkingDirectory() function will always ends return a slash. So, you'll want to definitely trim it; you can do this with a $PSEval, but we will have built-ins soon - https://github.com/Inedo/inedox-inedocore/issues/9
    • J

      Global Templates

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster templates
      2
      0 Votes
      2 Posts
      8 Views
      ?
      That's generally the idea of the arguments: those are the required variables. template MyTemplate<$var1,$var2,$var3> { ... } It's generally a good practice to use these instead of external or configuration variables. But you can always use the $IsVariableDefined function as well. if !$IsVariableDefined(my_var_name) { error; }
    • J

      No MSBuild Script action in new Plans

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster msbuild
      4
      0 Votes
      4 Posts
      4 Views
      ?
      ignore my previous post. I had modified a second action and had left the first one with spaces, the semi-colons worked fine. Thanks
    • J

      Is there a way to set a runtime variable to be usable in another scope

      Watching Ignoring Scheduled Pinned Locked Moved Support buildmaster
      3
      0 Votes
      3 Posts
      1 Views
      ?
      Alana, thanks. Just getting into using the script and didn't realize I could create a var with no value like that. Thanks!
    • J

      When will we be getting IIS and Windows missing functions?

      Watching Ignoring Scheduled Pinned Locked Moved Support windows buildmaster iis
      3
      0 Votes
      3 Posts
      7 Views
      J
      Alana, I knew they are in the legacy side but I couldn't find a easy way to find/use them if I'm creating a new plan but I didn't think of creating a new legacy one then converting it later (firm smack to my forehead!) Thanks!
    • 1 / 1