File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
2+
23# This script builds wheels for the API, SDK, and extension packages in the
34# dist/ dir, to be uploaded to PyPI.
5+
46set -ev
7+
58# Get the latest versions of packaging tools
69python3 -m pip install --upgrade pip build setuptools wheel
10+
711BASEDIR=$( dirname " $( readlink -f " $( dirname $0 ) " ) " )
812DISTDIR=dist
13+
914(
1015 cd $BASEDIR
1116 mkdir -p $DISTDIR
1217 rm -rf ${DISTDIR:? } /*
18+
1319 for d in exporter/* / opentelemetry-instrumentation/ opentelemetry-contrib-instrumentations/ opentelemetry-distro/ instrumentation/* / processor/* / propagator/* / resource/* / sdk-extension/* / util/* / ; do
1420 (
1521 echo " building $d "
@@ -21,6 +27,7 @@ DISTDIR=dist
2127 fi
2228 )
2329 done
30+
2431 (
2532 cd $DISTDIR
2633 for x in * ; do
You can’t perform that action at this time.
0 commit comments