Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. ali.meigooni_1735
    A
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    ali.meigooni_1735

    @ali.meigooni_1735

    1
    Reputation
    5
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    ali.meigooni_1735 Follow

    Best posts made by ali.meigooni_1735

    • BuildMaster Artifact Retention Question

      If an artifact retention policy is set to keep only only the last 500MB of artifacts, does this mean that across all releases, only 500MB of artifacts will be kept?

      Or does it mean 500MB per release? If the latter, would there be any way to set it up to apply per release?

      Thank you,
      Ali

      posted in Support
      A
      ali.meigooni_1735

    Latest posts made by ali.meigooni_1735

    • RE: Combine strings BuildMaster

      Thank you! That information allowed me to get a lot further than before.

      At the very beginning of this script, the script separates into multiple threads using async. In each thread, the same variable is being set to different values. Will the values for each variable be contained within each respective thread? Or might they leak over into other threads?

      Thank you,
      Ali

      foreach $DeployableName in @BM_DeployableList
      {
          with async = DeployableList
          {
              set $DeployPath = $Eval(`$BM_DeployPath_$DeployableName);
              set $AppPoolName = $Eval(`$BM_AppPoolName_$DeployableName);
              IIS::Stop-AppPool $($AppPoolName);
              Delete-Files *
              (
                  Directory: $DeployPath,
                  Verbose: true
              );
              Deploy-Artifact $DeployableName
              (
                  To: $($DeployPath),
                  DoNotClearTarget: false
              );
              IIS::Start-AppPool $($AppPoolName);
          }
          await DeployableList;
      }
      
      posted in Support
      A
      ali.meigooni_1735
    • RE: Combine strings BuildMaster

      Is it possible to use the result of combining two strings to call another variable?

      For example:

      set $BuildMaster_Test_1 = Test;
      set $Number = 1;
      Log-Debug "$(BuildMaster_Test_$Number)";

      In this example, I hoped it would output "Test". However, it actually outputs "BuildMaster_Test_1".

      posted in Support
      A
      ali.meigooni_1735
    • BuildMaster Artifact Retention Question

      If an artifact retention policy is set to keep only only the last 500MB of artifacts, does this mean that across all releases, only 500MB of artifacts will be kept?

      Or does it mean 500MB per release? If the latter, would there be any way to set it up to apply per release?

      Thank you,
      Ali

      posted in Support
      A
      ali.meigooni_1735
    • Combine strings BuildMaster

      Is it possible to combine 2 strings into 1 string (without using a separator character)?

      Specifically, I would like to merge the values of two variables into one.

      Thank you,
      Ali

      posted in Support
      A
      ali.meigooni_1735
    • RE: Question about retention policies

      @jrasch
      I tried creating a retention policy, like my attached screenshot.

      However, it deleted all of the artifacts in BuildMaster, not just orphaned ones. Is there a way to delete just the orphaned ones?

      We are using Version 5.8.3 (Build 7) of BuildMaster.

      InedoJPG.JPG

      posted in Support
      A
      ali.meigooni_1735