-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial work on new wheel release mechanism
- Loading branch information
1 parent
04dbb37
commit 9211eb0
Showing
13 changed files
with
1,134 additions
and
970 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Master merge | ||
|
||
# on: | ||
# push: | ||
# branches: [ master ] | ||
# workflow_dispatch: | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
|
||
|
||
build_linux: | ||
runs-on: ubuntu-latest | ||
container: quay.io/pypa/manylinux2014_x86_64 | ||
|
||
strategy: | ||
fail-fast: false | ||
max-parallel: 4 | ||
matrix: | ||
python-version: ['cp38-cp38', 'cp39-cp39', 'cp310-cp310', 'cp311-cp311', 'cp312-cp312'] | ||
|
||
steps: | ||
- name: add Python dir to path | ||
run: | | ||
echo "/opt/python/${{ matrix.python-version }}/bin" >> $GITHUB_PATH | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Build for Python ${{ matrix.python-version }} | ||
run: | | ||
git config --global --add safe.directory '*' | ||
python3 -V | ||
python3 -m pip install -U pip | ||
python3 -m pip install -U build twine wheel | ||
python3 -m pip install -U -r requirements.txt | ||
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_manylinux | ||
chmod +x mkn | ||
PATH=$PWD:$PATH KLOG=3 ./sh/mkn.sh | ||
python3 -m build | ||
python3 -m twine check dist/* | ||
rename 'linux_x86_64' 'manylinux_2_28_x86_64' dist/*.whl | ||
- name: Make wheels universal | ||
run: for wheel in $(ls dist/*.whl); do auditwheel repair $wheel; done | ||
- name: Save packages as artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: wheelhouse/*.whl | ||
|
||
|
||
# - uses: actions/checkout@v3 | ||
|
||
# - uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: ${{ matrix.python-version }} | ||
# architecture: x64 | ||
|
||
# - env: | ||
# TWINE_USERNAME: __token__ | ||
# TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} | ||
# run: | | ||
|
||
# curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_nix | ||
# chmod +x mkn | ||
# PATH=$PWD:$PATH KLOG=3 ./sh/mkn.sh | ||
|
||
# python3 -m pip install build twine pip --upgrade | ||
# python3 -m build | ||
# python3 -m twine check dist/* | ||
# python3 -m twine upload --repository testpypi --skip-existing dist/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,3 +58,5 @@ tools/benchmark/data | |
env*/ | ||
venv*/ | ||
tickf.yml | ||
dist | ||
tick.egg-info/ |
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
# Setuptools is not aware of source headers, or non-module SWIG files, so we | ||
# grab them here | ||
global-include *.h | ||
global-include *.i | ||
global-include *.inl | ||
recursive-include tick * | ||
recursive-exclude lib * | ||
|
||
# Getting the Cereal header-only library | ||
recursive-include lib/third_party/cereal/include *.h *.hpp |
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
Oops, something went wrong.