Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. jstarbird_7831
    3. Topics
    J
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by jstarbird_7831

    • J

      AcquiredServers not returning any values
      Support • buildmaster • • jstarbird_7831  

      5
      0
      Votes
      5
      Posts
      4
      Views

      J

      I see what happened, I looked under Servers where I would have thought that info would be but instead it's under General in the docs.
    • J

      Recurring Release Package Trigger issue
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      The fix for this is included in the latest release of BuildMaster (v5.8.1).
    • J

      Powershell script works outside BuildMaster but not from BuildMaster
      Support • buildmaster • • jstarbird_7831  

      6
      0
      Votes
      6
      Posts
      14
      Views

      J

      I should clarify my last post, it does a Return Select 0 only when it is successful.
    • J

      Artifact Extraction is locking up
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      1
      Views

      ?

      Thanks for the reply. I didn't really think it was BuildMaster itself since I can deploy other smaller apps to the same server, same main web site, without issue. This particular app has a lot of files so I was somewhat suspicious of BuildMaster, memory, Windows or combination thereof having some issue with that large number. I am continuing to debug it and we have been looking at couple of possible issues. One thing that did come is a possible incorrectly registered DLL. Our IS dept had been registering it under the apps folder rather than the Windows/system32 folder but it's not certain that the one is this particular folder was the one registered. Unfortunately this is a live server so I have to use caution as to what I do on it.
    • J

      Ensure Virtual Directory with UNC path not working
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      6
      Views

      ?

      Ignore. Someone had modified a property value incorrectly when combining two variables which was causing the Virtual Path to be invalid.
    • J

      Problem using PSEval
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      17
      Views

      ?

      Try: set $regExists = $PSEval("Test-Path $regPath");
    • J

      Artifact Comparison report not reporting changes
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      0
      Views

      ?

      That type of difference is understood. Someone here asked me about it so I just wanted to clarify what should be expected as it was not clearly defined in the documentation as to what differences it would be reporting. Thanks.
    • J

      Deployed files have incorrect time stamp
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      7
      Views

      ?

      Another option to consider is just defaulting to the BuildMaster Server time zone. At least for us that is the same as the Jenkins system. So use that as a Default but allow a setting in the Artifact Deployer if someone needs to be different.
    • J

      Question on Pipeline variables
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      Pipeline variables are considered Configuration Variables, not Runtime Variables. When you use the Set Variable Value statement, you are creating a runtime variable in the current scope, or updating a runtime variable in the current or parent scope. If you want your scenario to work, you would need to do this... #create a runtime variable from $pipelinevar1, which will resolve to configuration variable set $pipelinevar1 = $pipelinevar1; # update runtime variable created in above scope { set $pipelinevar1 = somevalue; Log-Information value is as set here: $pipelinevar1; } #general { Log-Information value is as set in pipeline here: $pipelinevar1; }
    • J

      Intermittent error with Ensure Application Pool
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      3
      Views

      ?

      Unfortunately it's a bug in IIS/COM API Library. There is no resolution, it "just happens" sometimes. On some servers, especially older ones, it seems to happen more frequently. Rebooting tends to fix more persistent ones. if it's an issue, then just put in a retry loop with a timeout.
    • J

      Question re Ensure App
      Support • buildmaster • • jstarbird_7831  

      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • J

      Question regarding Imported Deployables
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      1
      Views

      J

      Follow up question, would the file that is in the artifact already have had the key pairs replaced when the artifact was made? And do I need to deploy the config file first and then make the artifact or will it just automatically be part of it? What I'm needing to accomplish is deploy it using the same way if possible without having to replicate storage of the config in different apps. So replacing the key pairs under the new app if possible. I know it would make more sense to make it part of the original apps but I cannot here because this is strictly on-demand deployments and we want to keep the restrictions on the pipelines requiring deployment to stages in order for the real apps.
    • J

      How do I a Package Variable value via API
      Support • buildmaster • • jstarbird_7831  

      4
      0
      Votes
      4
      Posts
      2
      Views

      ?

      lol, boy I really need to quit doing 5 things at once. Thanks for the answer Ben. Thought you were answering another one I posted that I had meant to close. Going to drink my coffee now and hopefully wake up!
    • J

      Question on Importing Deployables
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      You can ignore this post. I can get my info from the API.
    • J

      DeployableName variable not being set
      Support • buildmaster • • jstarbird_7831  

      4
      0
      Votes
      4
      Posts
      2
      Views

      ben

      Ah, I think the confusion here is because of the different meanings of the word "set". If you don't select the deployables in the release template, it will have the default deployables available in executions. That is, if you do for deployable Foo and Foo is a deployable in the application, it will execute the code inside the block. However, you can select specific deployables for a release and the for deployable Foo block will only be run if Foo is selected.
    • J

      Any word on adding Proget Promotion functionality to BuildMaster
      Support • buildmaster • • jstarbird_7831  

      12
      0
      Votes
      12
      Posts
      9
      Views

      ?

      I found the issue. User error on my part. This is a small plan that handles this and I had a Legacy plan doing something similar but not using the Promote API. The pipeline was still pointing to that old plan and I just didn't notice the calls going to Proget. Then I was working on the new plan so as far as I knew it wasn't using the filename but in the old plan it was. Changed to the correct plan and the Promotion worked fine. Sorry for wasting your time on this.
    • J

      When can we expect next BuildMaster update
      Support • buildmaster • • jstarbird_7831  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      We anticipate the end of this week or early next!
    • J

      Question re Pipeline Servers or Roles setting
      Support • buildmaster • • jstarbird_7831  

      3
      0
      Votes
      3
      Posts
      3
      Views

      ben

      It looks like running a pipeline on a server role does not correctly set the $RoleName variable. I've filed this as BM-2381 and it is fixed for the next version of BuildMaster.
    • J

      Returning a list from a PSEval execution
      Support • buildmaster powershell • • jstarbird_7831  

      12
      0
      Votes
      12
      Posts
      29
      Views

      ?

      Thanks. That of course fixed it.
    • J

      Proper script to create Map variable
      Support • buildmaster • • jstarbird_7831  

      5
      0
      Votes
      5
      Posts
      11
      Views

      ?

      Yes, that is what I'm looking for. Sorry I didn't say it that way but I didn't think that was possible based on the docs, I thought having the sub-types like that was only in the maps. I tried that out and it works perfectly for me. Thanks!
    • 1
    • 2
    • 3
    • 4
    • 2 / 4