Skip to content

Commit

Permalink
fix: remove compile contracts gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
VGau committed Oct 25, 2024
1 parent 8b74e15 commit e8769e1
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
import java.util.concurrent.TimeUnit

if (!rootProject.tasks.getNames().contains("compileContracts")) {
rootProject.tasks.register("compileContracts") {
description = "Compiles contracts."
inputs.dir("$rootDir/contracts/contracts")
outputs.cacheIf { true }

doLast {
runRootMakefileCommand("compile-contracts", Map.of())
}
}
}

def runRootMakefileCommand(String command, Map<String, String> env) {
def randomSuffix = UUID.randomUUID().toString()
File outputFile = file("${command.replace(" ", "-")}-run-output-${randomSuffix}.txt")
Expand Down
1 change: 0 additions & 1 deletion coordinator/ethereum/blob-submitter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ task integrationTest(type: Test) {
testClassesDirs = sourceSets.integrationTest.output.classesDirs

dependsOn(":localStackComposeUp")
dependsOn(rootProject.tasks.compileContracts)

testLogging {
events TestLogEvent.FAILED,
Expand Down
1 change: 0 additions & 1 deletion coordinator/ethereum/gas-pricing/static-cap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ task integrationTest(type: Test) {
classpath = sourceSets.integrationTest.runtimeClasspath
testClassesDirs = sourceSets.integrationTest.output.classesDirs
dependsOn(":localStackComposeUp")
dependsOn(rootProject.tasks.compileContracts)
}


Expand Down
1 change: 0 additions & 1 deletion coordinator/ethereum/message-anchoring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,4 @@ task integrationTest(type: Test) {
classpath = sourceSets.integrationTest.runtimeClasspath
testClassesDirs = sourceSets.integrationTest.output.classesDirs
dependsOn(":localStackComposeUp")
dependsOn(rootProject.tasks.compileContracts)
}
1 change: 0 additions & 1 deletion coordinator/ethereum/test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ task integrationTest(type: Test) {
testClassesDirs = sourceSets.integrationTest.output.classesDirs

dependsOn(":localStackComposeUp")
dependsOn(rootProject.tasks.compileContracts)
testLogging {
events TestLogEvent.FAILED,
TestLogEvent.SKIPPED,
Expand Down

0 comments on commit e8769e1

Please sign in to comment.