forked from PolusAI/argolid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build process and PyPI release
- Loading branch information
Showing
5 changed files
with
87 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: name: Publish to PyPi | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
MACOSX_DEPLOYMENT_TARGET: "10.15" | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04, macos-11, windows-latest] | ||
cibw_archs: ["auto64"] | ||
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
name: Check out | ||
with: | ||
submodules: recursive | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1 | ||
name: Add MSVS Path | ||
|
||
- uses: ilammy/setup-nasm@v1 | ||
name: Add NASM | ||
|
||
- uses: actions/setup-python@v4 | ||
name: Install Python | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install cibuildwheel==2.16.2 delvewheel wheel | ||
- name: Building wheels | ||
run: | | ||
python -m cibuildwheel --output-dir dist | ||
env: | ||
CIBW_BUILD: ${{ matrix.cibw_build }} | ||
CIBW_BUILD_VERBOSITY: 3 | ||
CIBW_SKIP: "*musllinux*" | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 | ||
CIBW_BEFORE_ALL_MACOS: brew install llvm libomp nasm && | ||
bash ci-utils/install_prereq_linux.sh && | ||
mkdir -p /tmp/argolid_bld && | ||
cp -r local_install /tmp/argolid_bld | ||
CIBW_BEFORE_ALL_LINUX: curl -L http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/Packages/nasm-2.15.03-3.el8.x86_64.rpm -o nasm-2.15.03-3.el8.x86_64.rpm && | ||
yum -y install nasm-2.15.03-3.el8.x86_64.rpm && | ||
bash ci-utils/install_prereq_linux.sh && | ||
mkdir -p /tmp/argolid_bld && | ||
cp -r local_install /tmp/argolid_bld | ||
CIBW_BEFORE_ALL_WINDOWS: ci-utils\install_prereq_win.bat && | ||
xcopy /E /I /y local_install C:\TEMP\argolid_bld\local_install | ||
CIBW_ENVIRONMENT_MACOS: REPAIR_LIBRARY_PATH="/tmp/argolid_bld/local_install/lib:/tmp/argolid_bld/local_install/lib64" ON_GITHUB="TRUE" PATH="$(brew --prefix llvm)/bin:$PATH" COMPILER="/usr/local/opt/llvm/bin/clang++" CFLAGS="-I /usr/local/include -I/usr/local/opt/llvm/include" CXXFLAGS="-I /usr/local/include -I/usr/local/opt/llvm/include" LDFLAGS="-L /usr/local/lib -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib" CXX="/usr/local/opt/llvm/bin/clang++" CC="/usr/local/opt/llvm/bin/clang" ARGOLID_DEP_DIR="/tmp/argolid_bld/local_install" | ||
CIBW_ENVIRONMENT_LINUX: LD_LIBRARY_PATH="/tmp/argolid_bld/local_install/lib:/tmp/argolid_bld/local_install/lib64:$LD_LIBRARY_PATH" ON_GITHUB="TRUE" ARGOLID_DEP_DIR="/tmp/argolid_bld/local_install" | ||
CIBW_REPAIR_WHEEL_COMMAND_MACOS: DYLD_LIBRARY_PATH=$REPAIR_LIBRARY_PATH delocate-listdeps {wheel} && DYLD_LIBRARY_PATH=$REPAIR_LIBRARY_PATH delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel} | ||
CIBW_ENVIRONMENT_WINDOWS: PATH="$TEMP\\argolid\\bin;$PATH" ON_GITHUB="TRUE" ARGOLID_DEP_DIR="C:\\TEMP\\argolid_bld\\local_install" | ||
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" | ||
CIBW_ARCHS: ${{ matrix.cibw_archs }} | ||
CIBW_TEST_REQUIRES: bfio==2.3.2 tensorstore | ||
CIBW_TEST_COMMAND: python -W default -m unittest discover -s {project}/tests -v | ||
|
||
- name: Install Dependencies | ||
run: python -m pip install --upgrade twine requests | ||
|
||
- name: Publish to PyPi | ||
run: python -m twine upload dist/*.whl | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | ||
TWINE_REPOSITORY: pypi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters