Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Rails (0.18 sec)

  1. .github/workflows/submit-github-dependency-graph.yml

          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
            additional-arguments: --no-configuration-cache
          env:
            # Exclude some projects and configurations that should not contribute to the dependency graph
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 09:18:51 GMT 2024
    - 1.1K bytes
    - Viewed (2)
  2. .github/workflows/codeql-analysis.yml

          run: ./gradlew --stop
          if: ${{ matrix.language == 'java' }}
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
        #    uses a compiled language
    
        #- run: |
        #   make bootstrap
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 4K bytes
    - Viewed (0)
  3. .teamcity/README.md

      - If there are any errors, read the error and fix your code.
      - IMPORTANT NOTE: if the first import fails, you have to select and apply `Synchronization disabled`, then repeat the step above.
        Otherwise, TeamCity complains "Can't find the previous revision, please commit current settings first".
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                println(richReport.toText())
                block()
            }
        }
    
        /**
         * Runs the binary compatibility check against two source trees, but fails without generating a rich report.
         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  5. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "CommonProgramW6432",
        "ProgramData",
        "ProgramFiles",
        "ProgramFiles(x86)",
        // Simply putting PATH there isn't enough. Windows has case-insensitive env vars but something else fails if the Path variable is published as PATH for test tasks.
        OperatingSystem.current().pathVar,
        "PATHEXT",
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
        "access_key",
        "apikey",
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Apr 18 01:52:16 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            requiresNotEc2Agent()
            requiresNotSharedHost()
        }
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            assertArchivedFilesSeen("report-flaky-test-without-leftover-test.zip")
        }
    
        @Test
        fun `leftover files are archived when test fails`() {
            val result = run(
                ":failed-report-with-leftover:test",
                ":successful-report:test",
                ":failed-test-with-leftover:test",
                "--continue",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 14 12:35:52 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

     *
     * Our performance tests don't work with PTS, yet.
     * Smoke and soak tests are hard to grasp for PTS, that is why we run them without.
     * When running on Windows with PTS, SimplifiedKotlinScriptEvaluatorTest fails. See https://github.com/gradle/gradle-private/issues/3615.
     */
    fun Project.supportsPredictiveTestSelection() = !isPerformanceProject() && !setOf("smoke-test", "soak", "kotlin-dsl", "smoke-ide-test").contains(name)
    
    /**
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

            extraSteps = extraBuildSteps,
            preSteps = preBuildSteps
        )
    
        failureConditions {
            // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash
            // Some soak tests produce OOM exceptions
            // There are also random worker crashes for some tests.
            // We have test-retry to handle the crash in tests
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 09 16:49:31 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top