Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Always (0.08 sec)

  1. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

    fun BuildSteps.substDirOnWindows(os: Os) {
        if (os == Os.WINDOWS) {
            script {
                name = "SETUP_VIRTUAL_DISK_FOR_PERF_TEST"
                executionMode = BuildStep.ExecutionMode.ALWAYS
                scriptContent = """
                    subst p: /d
                    subst p: "%teamcity.build.checkoutDir%"
                """.trimIndent()
                skipConditionally()
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

                    schedule {
                        schedulingPolicy = daily {
                            this.hour = triggerHour
                        }
                        triggerBuild = always()
                        withPendingChangesOnly = true
                        enabled = branch.enableVcsTriggers
                        // https://www.jetbrains.com/help/teamcity/2022.04/configuring-schedule-triggers.html#general-syntax-1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/StagePasses.kt

                    }
                } else {
                    schedulingPolicy = daily {
                        hour = 0
                        minute = 30
                    }
                }
                triggerBuild = always()
                withPendingChangesOnly = true
                param("revisionRule", "lastFinished")
                branchFilter = model.branch.branchFilter()
                enabled = enableTriggers
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                        }
                    }
                    removeSubstDirOnWindows(os)
                    killProcessStep(buildTypeThis, KILL_PROCESSES_STARTED_BY_GRADLE, os, executionMode = BuildStep.ExecutionMode.ALWAYS)
                    checkCleanM2AndAndroidUserHome(os)
                }
            }
    
            applyDefaultDependencies(model, this, !performanceTestBuildSpec.withoutDependencies)
        }
    )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/DocsTest.kt

    echo "Tests to be ${action}d in this build"
    type test-splits\$action-test-classes.properties
    """
    
        return {
            script {
                name = "PREPARE_TEST_CLASSES"
                executionMode = BuildStep.ExecutionMode.ALWAYS
                scriptContent = if (os == Os.WINDOWS) windowsScript else unixScript
            }
        }
    }
    
    fun asDocsTestId(model: CIBuildModel, os: Os): String {
        return "${model.projectId}_DocsTest_${os.asName()}"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. JavadocStyleGuide.md

    /**
     * Returns an Image object that can then be painted on the screen.
     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. .github/workflows/check-bad-merge.yml

            id: run_check
            run: |
              groovy .github/workflows/CheckBadMerge.groovy $(<pr_commits.txt) > output.txt 2>&1
          - name: Read output file
            id: read_output
            if: ${{ always() }}
            run: |
              cat output.txt
              OUTPUT=$(cat output.txt)
              echo "OUTPUT<<EOF" >> $GITHUB_ENV
              echo "$OUTPUT" >> $GITHUB_ENV
              echo "EOF" >> $GITHUB_ENV
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

                }
                schedule {
                    schedulingPolicy = daily {
                        hour = 3
                    }
                    branchFilter = "+:master"
                    triggerBuild = always()
                    withPendingChangesOnly = false
                    enabled = enableTriggers
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                    gradleParams = parameters
                    executionMode = BuildStep.ExecutionMode.ALWAYS
                }
            }
            killProcessStep(KILL_PROCESSES_STARTED_BY_GRADLE, os, arch, executionMode = BuildStep.ExecutionMode.ALWAYS)
        }
    
        steps {
            checkCleanM2AndAndroidUserHome(os)
        }
    
        applyDefaultDependencies(model, this, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

        }
    }
    
    fun BuildSteps.checkCleanM2AndAndroidUserHome(os: Os = Os.LINUX, buildType: BuildType? = null) {
        script {
            name = "CHECK_CLEAN_M2_ANDROID_USER_HOME"
            executionMode = BuildStep.ExecutionMode.ALWAYS
            scriptContent = if (os == Os.WINDOWS) {
                checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\repository") +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top