File: build-example

package info (click to toggle)
python-cmake-build-extension 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: python: 504; cpp: 70; sh: 13; makefile: 5
file content (16 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

cp -r example/* "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for PYTHON in `py3versions -s`
do

	echo ""
	echo "---------------- Building with $PYTHON ----------------"
	$PYTHON -m build --skip-dependency-check --no-isolation --wheel
done