Skip to content

Commit

Permalink
build: remove mistakenly added config code
Browse files Browse the repository at this point in the history
Signed-off-by: Jendrik Johannes <[email protected]>
  • Loading branch information
jjohannes committed Jan 9, 2025
1 parent c62dabf commit fac0c04
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ updates:
- package-ecosystem: gradle
directory: /
schedule:
interval: weekly
interval: weekly
20 changes: 0 additions & 20 deletions suites/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,6 @@ mainModuleInfo {
runtimeOnly("com.swirlds.config.impl")
}

val updateDockerEnv =
tasks.register<Exec>("updateDockerEnv") {
description =
"Creates the .env file in the docker folder that contains environment variables for Docker"
group = "docker"

workingDir(layout.projectDirectory.dir("../server/docker"))
commandLine("sh", "-c", "./update-env.sh ${project.version} false false")
}

// Task to build the Docker image
tasks.register<Exec>("createDockerImage") {
description = "Creates the Docker image of the Block Node Server based on the current version"
group = "docker"

dependsOn(updateDockerEnv, tasks.assemble)
workingDir(layout.projectDirectory.dir("../server/docker"))
commandLine("./docker-build.sh", project.version, layout.projectDirectory.dir("..").asFile)
}

tasks.register<Test>("runSuites") {
description = "Runs E2E Test Suites"
group = "suites"
Expand Down

0 comments on commit fac0c04

Please sign in to comment.