Skip to content

Commit

Permalink
airbyte-workers copyGenerateTar depends on generateWellKnownTypes (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
edgao committed Dec 15, 2022
1 parent e864e20 commit 69bc4a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions airbyte-workers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ task generateWellKnownTypes() {

tasks.named("buildDockerImage") {
dependsOn copyGeneratedTar
}

// Ideally, we would have buildDockerImage depend on generateWellKnownTypes
// but some of our actions use copyGeneratedTar as the "set up the docker build context" task
// so we'll just add it here.
tasks.named("copyGeneratedTar") {
dependsOn generateWellKnownTypes
}

Expand Down

0 comments on commit 69bc4a3

Please sign in to comment.