Skip to content

Commit

Permalink
Add missing dependency for buildx (#21942)
Browse files Browse the repository at this point in the history
  • Loading branch information
gosusnp authored Jan 26, 2023
1 parent aa6afd0 commit b0a81ba
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions airbyte-container-orchestrator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,10 @@ tasks.named("buildDockerImage") {
dependsOn copyGeneratedTar
dependsOn generateWellKnownTypes
}

// 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
}

0 comments on commit b0a81ba

Please sign in to comment.