We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4924a77 commit 50926d2Copy full SHA for 50926d2
make-pex-mp.sh
@@ -45,6 +45,7 @@ do
45
pip install pex
46
pip wheel -r requirements.txt --wheel-dir wh # -${cpversion} # can be shared among verions
47
deactivate
48
+ echo $platform >> platforms.tmp
49
done
50
51
@@ -62,7 +63,11 @@ echo "*** Now running the following to create the multi-platform pex: ./makepex.
62
63
cat makepex.$$
64
./makepex.$$
65
66
+arch=$(uname -m)
67
echo "Created $pexfn"
68
ln -sf "$pexfn" kafkatop
69
tar zcf kafkatop-release.tar.gz kafkatop
70
ls -lh $pexfn
71
+echo "kafkatop version $(cat tag.txt) compatible with the following $arch platforms:" > releasebody.md
72
+echo "" >> releasebody.md
73
+cat platforms.json |jq .platform >> releasebody.md
0 commit comments