Skip to content

Commit

Permalink
ci: Generate Python package
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviermartin committed Feb 21, 2024
1 parent fbd6542 commit 93da47c
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,46 @@ jobs:
- uses: actions/checkout@v2
- run: sudo apt install libbluetooth-dev
- run: mkdir build && pushd build && cmake -DGATTLIB_FORCE_DBUS=TRUE -DCMAKE_BUILD_TYPE=Release .. && make

generate-python-source-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt install -y libbluetooth-dev
- run: ./ci/generate-python-package.sh
- name: Archive Python packages
uses: actions/upload-artifact@v4
with:
name: python-package
path: dist/*.tar.gz

generate-python-binary-packages:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- run: sudo apt install -y libbluetooth-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: ./ci/generate-python-package.sh
env:
SKIP_SOURCE_PACKAGE: 1
- name: Archive Python packages
uses: actions/upload-artifact@v4
with:
name: python-package
path: dist/*

# publish-python-packages:
# needs: generate-python-packages
# runs-on: ubuntu-latest
# steps:
# - uses: actions/download-artifact@master
# with:
# name: python-package
# path: dist/*
# - run: ls dist/*
9 changes: 6 additions & 3 deletions ci/generate-python-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,17 @@ python3 -m pip install wheel
# Generate packages
pushd ${gattlib_py_package_dir}

# Binary package
python3 setup.py bdist_wheel
if [[ -z "${SKIP_SOURCE_PACKAGE}" ]]
# Binary package
python3 setup.py bdist_wheel
fi

# Source package
python setup.py sdist

# Move generated artifact to project root path
ls dist/*
mv dist/* ${ROOT_PATH}
mv dist ${ROOT_PATH}

popd

Expand Down

0 comments on commit 93da47c

Please sign in to comment.