We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82dd3ab commit 6512381Copy full SHA for 6512381
ci/README.md
@@ -1,6 +1,7 @@
1
# Building and running tests as a developer
2
3
-CI tests can be run inside
+CI tests can be run on docker by invoking the script `./ci/run_docker.sh
4
+./ci/do_ci.sh {TARGET}`or inside
5
[devcontainer](../CONTRIBUTING.md#devcontainer-setup-for-project)
6
by invoking the script
7
`./ci/do_ci.sh {TARGET}` where the targets are:
ci/run_docker.sh
@@ -7,7 +7,7 @@ set -e
8
BUILD_IMAGE=opentelemetry-cpp-build
9
docker image inspect "$BUILD_IMAGE" &> /dev/null || {
10
- docker build -t "$BUILD_IMAGE" ci
+ docker build -t "$BUILD_IMAGE" -f .devcontainer/Dockerfile.dev .
11
}
12
13
if [[ $# -ge 1 ]]; then
0 commit comments