Including external DLLs (klayout bits) in wheel

This commit is contained in:
Thomas Ferreira de Lima 2019-01-02 00:34:56 -05:00
parent b5788d8d7d
commit b72660a95e
No known key found for this signature in database
GPG Key ID: 43E98870EAA0A86E
2 changed files with 94 additions and 10 deletions

View File

@ -52,7 +52,7 @@ jobs:
#ignoreLASTEXITCODE: false # Optional #ignoreLASTEXITCODE: false # Optional
#pwsh: false # Optional #pwsh: false # Optional
#workingDirectory: # Optional #workingDirectory: # Optional
displayName: 'Downloading and Extracting KLayout bits' displayName: 'Download and Extract KLayout bits'
# - script: | # - script: |
# curl https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi -o VCForPython27.msi # curl https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi -o VCForPython27.msi
@ -61,28 +61,28 @@ jobs:
# curl https://raw.githubusercontent.com/mattn/gntp-send/master/include/msinttypes/stdint.h -o "%VS90COMNTOOLS%\Include\stdint.h" # curl https://raw.githubusercontent.com/mattn/gntp-send/master/include/msinttypes/stdint.h -o "%VS90COMNTOOLS%\Include\stdint.h"
# dir "%VS90COMNTOOLS%\Include" # dir "%VS90COMNTOOLS%\Include"
# condition: eq(variables['python.version'], '2.7') # condition: eq(variables['python.version'], '2.7')
# displayName: 'Installing Microsoft Visual C++ Compiler for Python 2.7' # displayName: 'Install Microsoft Visual C++ Compiler for Python 2.7'
- script: | - script: |
python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade pip setuptools wheel
displayName: 'Updating pip, setuptools and wheel' displayName: 'Update pip, setuptools and wheel'
- script: | - script: |
python -V python -V
set "KLAYOUT_BITS=%cd%\klayout-microbits\klayout-microbits-1.0\msvc2017\%PYTHON_ARCHITECTURE%" set "KLAYOUT_BITS=%cd%\klayout-microbits\klayout-microbits-1.0\msvc2017\%PYTHON_ARCHITECTURE%"
echo KLAYOUT_BITS=%KLAYOUT_BITS% echo KLAYOUT_BITS=%KLAYOUT_BITS%
python setup.py install python setup.py bdist_wheel
displayName: 'Build KLayout' displayName: 'Build KLayout'
- bash: |
bash `pwd`/ci-scripts/windows/fix_wheel.sh `pwd`/dist/*.whl "`pwd`/klayout-microbits/klayout-microbits-1.0/msvc2017/$PYTHON_ARCHITECTURE"
displayName: 'Copy klayout bits dlls into wheel'
- script: | - script: |
set PATH=%KLAYOUT_BITS%\curl\bin;%KLAYOUT_BITS%\expat\bin;%KLAYOUT_BITS%\ptw\bin;%KLAYOUT_BITS%\zlib\bin;%PATH% echo PATH=%PATH%
pip install klayout --no-index -f dist
python testdata/pymod/import_db.py python testdata/pymod/import_db.py
python testdata/pymod/import_rdb.py python testdata/pymod/import_rdb.py
python testdata/pymod/import_tl.py python testdata/pymod/import_tl.py
python testdata/pymod/pya_tests.py python testdata/pymod/pya_tests.py
displayName: 'Test KLayout pymod' displayName: 'Test KLayout pymod'
# - script : |
# python setup.py bdist_wheel
# displayName: 'Building KLayout wheel'

View File

@ -0,0 +1,84 @@
#!/usr/bin/env bash
SCRIPT_NAME=`basename "$0"`
TMP_WHEEL="$PWD/tmp/klayout_tempwheel"
display_usage() {
echo "This script includes external libraries in windows-based wheels."
echo "Caution: This will delete the original wheel."
echo -e "\nUsage:\n./${SCRIPT_NAME} [--help|-h] klayout-...-win_amd64.whl \n"
}
if [[ ( $1 == "--help") || $1 == "-h" ]]
then
display_usage
exit 0
fi
# Check number of arguments
if [ $# -eq 0 ]; then
>&2 echo -e "ERROR: No filename supplied\n"
display_usage
exit 1
elif [ ! $# -eq 2 ]; then
>&2 echo -e "ERROR: Too many files supplied. Provide one filename at at time.\n"
display_usage
exit 1
fi
# Read wheel file from argument
WHL="$1"
WHL=$(echo $WHL | sed 's/\\/\//g' | sed 's/://')
KLAYOUT_BITS="$2"
KLAYOUT_BITS=$(echo $KLAYOUT_BITS | sed 's/\\/\//g' | sed 's/://')
# Check WHL is a valid file
if [[ ! -f "$WHL" ]]; then
>&2 echo -e "ERROR: $WHL is not a file"
exit 1
fi
# Convert to absolute path (linux only)
WHL=$(readlink -f $WHL)
# Record old current directory
OLD_PWD=$PWD
# Need to include external DLLs (klayout bits) into wheel
# # Checking if it was previously patched
# if unzip -l $WHL | grep -q 'patch_external_libraries_included'; then
# echo "$(basename $WHL) is already patched. Doing nothing."
# exit 0
# fi
# Repair script below
if [[ -d $TMP_WHEEL ]]; then
rm -rf $TMP_WHEEL
else
mkdir -p $TMP_WHEEL
fi
echo "Unpacking $WHL inside $TMP_WHEEL"
wheel unpack $WHL -d $TMP_WHEEL || exit 1
TMP_WHEEL="$TMP_WHEEL/`ls $TMP_WHEEL`"
cd $TMP_WHEEL/klayout
echo "Copying libraries: libcurl.dll, expat.dll, pthreadVCE2.dll, zlib1.dll"
echo pwd: `pwd`
cp -v $KLAYOUT_BITS/curl/bin/* .
cp -v $KLAYOUT_BITS/expat/bin/* .
cp -v $KLAYOUT_BITS/ptw/bin/* .
cp -v $KLAYOUT_BITS/zlib/bin/* .
# if [ $? -ne 0 ]; then
# >&2 echo "ERROR: lib not found. Quitting."
# exit 1
# fi
cd $TMP_WHEEL
touch $TMP_WHEEL/patch_external_libraries_included
echo "Packing $WHL from $TMP_WHEEL"
# rm -f $WHL
wheel pack $TMP_WHEEL -d `dirname $WHL` || exit 1
echo "Done. $(basename $WHL) is patched."
# Cleanup (should always execute)
cd $OLD_PWD