Skip to content

Commit

Permalink
Remove obsolete generateProtoDoc gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpeters1208 committed Sep 11, 2024
1 parent a27b335 commit 153e983
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions proto/proto-backplane-grpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,29 +72,6 @@ TaskProvider<Task> generateProtobuf = Docker.registerDockerTask(project, 'genera
}
}

TaskProvider<Task> generateProtoDocs = Docker.registerDockerTask(project, 'generateProtoDocs') {
platform = 'linux/amd64'

copyIn {
from(layout.projectDirectory) {
include 'docs/'
include 'src/main/proto/'
}
}

dockerfile {
from('deephaven/protoc-base:local-build')
copyFile('docs/', '/docs')
copyFile('src/main/proto/', '/protos')
runCommand('mkdir /docs/out; ./docs/generate_docs.sh')
}

containerOutPath = '/docs/out'
copyOut {
into('docs/out')
}
}

// Provide js, go, python output as distinct artifacts - the java output will be consumed in this project by
// declaring it as a new sourceset, see below. This could definitely be more precisely stated, but given that
// all are generated in the same docker image creation step, we don't need to get too clever here.
Expand Down

0 comments on commit 153e983

Please sign in to comment.