Skip to content

Commit

Permalink
Add proto source to docker image so that the dockerized build doesn't…
Browse files Browse the repository at this point in the history
… blow up
  • Loading branch information
jcferretti committed Sep 26, 2024
1 parent 48b47c1 commit de6ede0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cpp-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') {
include 'deephaven/examples/**'
include 'deephaven/tests/**'
}
from("..") {
include 'proto/**'
}
}

dockerfile {
Expand All @@ -96,6 +99,7 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') {
copyFile('deephaven/dhclient/', "${prefix}/src/deephaven/dhclient/")
copyFile('deephaven/examples/', "${prefix}/src/deephaven/examples/")
copyFile('deephaven/tests/', "${prefix}/src/deephaven/tests/")
copyFile('proto/', "${prefix}/proto/")
copyFile('cpp-tests-to-junit.sh', "${prefix}/bin/dhcpp")
copyFile('build-dependencies.sh', "/tmp")
runCommand("PREFIX='${prefix}'; BUILD_TYPE='${build_type}'; " +
Expand Down

0 comments on commit de6ede0

Please sign in to comment.