Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compileScala (0.15 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

            when:
            run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
            when:
            run 'compileScala'
    
            then:
            skipped ':compileScala'
    
            when:
            buildScript(scalaProjectBuildScript(newZincVersion, newScalaVersion))
            run 'compileScala'
    
            then:
            executedAndNotSkipped ':compileScala'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

                }
            """
    
            expect:
            succeeds("compileScala")
        }
    
        def "compile bad scala code do not fail the build when options.failOnError is false"() {
            given:
            badCode()
    
            and:
            buildFile << "compileScala.options.failOnError = false\n"
    
            expect:
            succeeds 'compileScala'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top