File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ packages=
47
47
48
48
[exclude_release]
49
49
packages =
50
- opentelemetry-instrumentation-aiohttp-server
51
50
opentelemetry-resource-detector-azure
52
51
opentelemetry-sdk-extension-aws
53
52
opentelemetry-propagator-aws-xray
Original file line number Diff line number Diff line change @@ -18,13 +18,18 @@ DISTDIR=dist
18
18
19
19
for d in exporter/* / opentelemetry-instrumentation/ opentelemetry-contrib-instrumentations/ opentelemetry-distro/ instrumentation/* / propagator/* / resource/* / sdk-extension/* / util/* / ; do
20
20
(
21
- echo " building $d "
22
- cd " $d "
23
- # Some ext directories (such as docker tests) are not intended to be
24
- # packaged. Verify the intent by looking for a pyproject.toml.
25
- if [ -f pyproject.toml ]; then
26
- python3 -m build --outdir " $BASEDIR /dist/"
27
- fi
21
+ # Skip the build step if the directory name is "opentelemetry-instrumentation-aiohttp-server"
22
+ if [[ " $d " == * " opentelemetry-instrumentation-aiohttp-server" * ]]; then
23
+ echo " Skipping build for $d "
24
+ else
25
+ echo " building $d "
26
+ cd " $d "
27
+ # Some ext directories (such as docker tests) are not intended to be
28
+ # packaged. Verify the intent by looking for a pyproject.toml.
29
+ if [ -f pyproject.toml ]; then
30
+ python3 -m build --outdir " $BASEDIR /dist/"
31
+ fi
32
+ fi
28
33
)
29
34
done
30
35
(
You can’t perform that action at this time.
0 commit comments