Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for withInstallations (0.33 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainFixture.groovy

         *
         *     when:
         *     withInstallations(jvm1, jvm2).run(":task")
         * </pre>
         */
        AbstractIntegrationSpec withInstallations(Jvm jvm, Jvm... rest) {
            return withInstallations([jvm] + rest.toList())
        }
    
        AbstractIntegrationSpec withInstallations(List<Jvm> jvms) {
            def installationPaths = jvms.collect { it.javaHome.absolutePath }.join(",")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

                    }
                    setJvmArgs(['-version'])
                    mainClass = 'None'
                }
            """
    
            when:
            withInstallations(jdk).run(":run", "--info")
    
            then:
            executedAndNotSkipped(":run")
            outputContains("Command: ${jdk.javaHome.absolutePath}")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            // Test up-to-date checks
            when:
            withInstallations(jdk, otherJdk).run(":compileJava")
            then:
            skipped(":compileJava")
    
            when:
            withInstallations(jdk, otherJdk).run(":compileJava", "-Pchanged")
            then:
            executedAndNotSkipped(":compileJava")
    
            when:
            withInstallations(jdk, otherJdk).run(":compileJava", "-Pchanged")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            when:
            withInstallations(jdk17).succeeds(":compileJava")
            then:
            executedAndNotSkipped(":compileJava")
            classJavaVersion(javaClassFile("Main.class")) == JavaVersion.VERSION_11
    
            // Running with JVM 17 works, because the required Java 15 API is available at runtime
            when:
            withInstallations(jdk17).succeeds(":run")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

                }
            """
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala'
            then:
            skipped ':compileScala'
    
            when:
            withInstallations(jdk8, jdk11).run 'compileScala', '-Pchanged', '--info'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                    public void test() {}
                }
            """
    
            when:
            withInstallations(jdkMetadata).run(task)
            def events = toolchainEvents(task)
            then:
            executedAndNotSkipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            when:
            withInstallations(jdkMetadata).run(task)
            events = toolchainEvents(task)
            then:
            skipped(task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

                                    }
                                }
                            }
                        }
                    }
                }
            """
    
            when:
            withInstallations(Jvm.current(), otherJvm).succeeds("check")
    
            then:
            result.assertTaskExecuted(":test")
            result.assertTaskExecuted(":testOtherJdk")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            configureProjectWithJavaPlugin(compileWithVersion)
    
            configureLauncher(jdkOther)
            configureExecutable(jdkCurrent)
    
            when:
            withInstallations(jdkCurrent, jdkOther).runAndFail(":test")
    
            then:
            failureDescriptionStartsWith("Execution failed for task ':test'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainCoexistWithCurrentOptionsIntegrationTest.groovy

            writeJvmCriteria(otherJvm)
            captureJavaHome()
            executer.withArgument("-Porg.gradle.java.installations.auto-detect=false")
    
            expect:
            withInstallations(otherJvm).succeeds("help")
            assertDaemonUsedJvm(otherJvm)
        }
    
        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            def otherJdk = AvailableJavaHomes.differentVersion
            writeJvmCriteria(otherJdk)
            captureJavaHome()
    
            when:
            withInstallations(otherJdk).succeeds()
    
            then:
            assertDaemonUsedJvm(otherJdk)
            wasForked()
            daemons.daemon.stops()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top