Attempt to fix issue #133: Touch class #375
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
name: Publish to PyPI | |
on: | |
pull_request: | |
push: | |
release: | |
types: [published] | |
jobs: | |
build-wayland: | |
name: Build Wayland libraries | |
runs-on: ubuntu-latest | |
container: quay.io/pypa/manylinux_2_28_x86_64 | |
env: | |
libdrm-version: "2.4.114" | |
seatd-version: "0.6.3" | |
pixman-version: "0.42.0" | |
wayland-protocols-version: "1.31" | |
wayland-version: "1.22.0" | |
wlroots-version: "0.16.2" | |
steps: | |
- name: Install dependencies | |
run: | | |
yum -y install \ | |
hwdata \ | |
python3-pip \ | |
libffi-devel \ | |
libinput-devel \ | |
libpciaccess-devel \ | |
libudev-devel \ | |
libxkbcommon-x11-devel \ | |
libxml2-devel \ | |
mesa-libEGL-devel \ | |
mesa-libgbm-devel \ | |
xcb-util-devel \ | |
xcb-util-image-devel \ | |
xcb-util-keysyms-devel \ | |
xcb-util-renderutil-devel \ | |
xcb-util-wm-devel \ | |
xorg-x11-server-Xwayland \ | |
ninja-build \ | |
wget | |
- name: Set environment variables | |
run: | | |
echo "CPATH=${HOME}/wayland/usr/include" >> $GITHUB_ENV | |
echo "LD_LIBRARY_PATH=${HOME}/wayland/usr/lib" >> $GITHUB_ENV | |
echo "LIBRARY_PATH=${HOME}/wayland/usr/lib" >> $GITHUB_ENV | |
echo "PKG_CONFIG_PATH=${HOME}/wayland/usr/share/pkgconfig:${HOME}/wayland/usr/lib/pkgconfig" >> $GITHUB_ENV | |
- name: Download and unpack Wayland source | |
run: | | |
wget $WAYLAND_URL | |
wget $WAYLAND_PROTOCOLS_URL | |
wget $LIBDRM_URL | |
wget -O seatd.tar.gz $SEATD_URL | |
wget $PIXMAN_URL | |
wget -O wlroots.tar.gz $WLROOTS_URL | |
tar -xJf wayland-${{ env.wayland-version }}.tar.xz | |
tar -xJf wayland-protocols-${{ env.wayland-protocols-version }}.tar.xz | |
tar -xzf drm-libdrm-${{ env.libdrm-version }}.tar.gz | |
tar -xjf pixman-pixman-${{ env.pixman-version }}.tar.bz2 | |
tar -xzf seatd.tar.gz | |
tar -xzf wlroots.tar.gz | |
env: | |
WAYLAND_URL: https://gitlab.freedesktop.org/wayland/wayland/-/releases/${{ env.wayland-version }}/downloads/wayland-${{ env.wayland-version }}.tar.xz | |
WAYLAND_PROTOCOLS_URL: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/${{ env.wayland-protocols-version }}/downloads/wayland-protocols-${{ env.wayland-protocols-version }}.tar.xz | |
LIBDRM_URL: https://gitlab.freedesktop.org/mesa/drm/-/archive/libdrm-${{ env.libdrm-version }}/drm-libdrm-${{ env.libdrm-version }}.tar.gz | |
SEATD_URL: https://git.sr.ht/~kennylevinsen/seatd/archive/${{ env.seatd-version }}.tar.gz | |
PIXMAN_URL: https://gitlab.freedesktop.org/pixman/pixman/-/archive/pixman-${{ env.pixman-version }}/pixman-pixman-${{ env.pixman-version }}.tar.bz2 | |
WLROOTS_URL: https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/${{ env.wlroots-version }}/wlroots-${{ env.wlroots-version }}.tar.gz | |
- name: Install meson | |
run: | | |
pip3 install meson | |
- name: Build wayland | |
working-directory: wayland-${{ env.wayland-version }} | |
run: | | |
meson build --prefix=/usr -Ddocumentation=false | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
ninja -C build install | |
- name: Build wayland-protocols | |
working-directory: wayland-protocols-${{ env.wayland-protocols-version }} | |
run: | | |
meson build --prefix=/usr | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
ninja -C build install | |
- name: Build libdrm | |
working-directory: drm-libdrm-${{ env.libdrm-version }} | |
run: | | |
meson build --prefix=/usr | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
ninja -C build install | |
- name: Build seatd | |
working-directory: seatd-${{ env.seatd-version }} | |
run: | | |
meson build --prefix=/usr | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
ninja -C build install | |
- name: Build pixman | |
working-directory: pixman-pixman-${{ env.pixman-version }} | |
run: | | |
meson build --prefix=/usr | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
ninja -C build install | |
- name: Build wlroots | |
working-directory: wlroots-${{ env.wlroots-version }} | |
run: | | |
meson build --prefix=/usr -Dxwayland=enabled | |
ninja -C build | |
DESTDIR=~/wayland ninja -C build install | |
- name: Create artifact | |
run: tar czf ~/wayland.tar.gz -C ${HOME}/wayland/ . | |
- name: Upload built libraries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wayland | |
path: ~/wayland.tar.gz | |
if-no-files-found: error | |
build-wheel-cpython: | |
name: Build CPython wheels | |
runs-on: ubuntu-latest | |
container: quay.io/pypa/manylinux_2_28_x86_64 | |
needs: build-wayland | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Download wayland libraries | |
uses: actions/download-artifact@v3 | |
with: | |
name: wayland | |
- name: Unpack wayland artifact | |
run: tar xf wayland.tar.gz -C / | |
- name: Set python version | |
run: | | |
PYTHON_ROOT=$(find /opt/python -name cp${PYTHON_VERSION/./}-*) | |
echo "${PYTHON_ROOT}/bin" >> $GITHUB_PATH | |
shell: bash | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
yum -y install \ | |
libinput-devel \ | |
libpciaccess \ | |
libudev-devel \ | |
libxkbcommon-x11-devel \ | |
mesa-libEGL \ | |
mesa-libgbm \ | |
xcb-util \ | |
xcb-util-image \ | |
xcb-util-keysyms \ | |
xcb-util-renderutil \ | |
xcb-util-wm-devel | |
pip install auditwheel build | |
- name: Build wheels | |
run: | | |
python -m build --wheel | |
ls dist/ | |
auditwheel show dist/pywlroots-*.whl | |
auditwheel repair --plat manylinux_2_28_x86_64 -w output_wheels dist/pywlroots-*.whl | |
- name: Upload wheel | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels-${{ matrix.python-version }} | |
path: output_wheels/*.whl | |
build-wheel-pypy: | |
name: Build PyPy wheels | |
runs-on: ubuntu-latest | |
container: quay.io/pypa/manylinux_2_28_x86_64 | |
needs: build-wayland | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
pypy-version: ["7.3"] | |
steps: | |
- name: Download wayland libraries | |
uses: actions/download-artifact@v3 | |
with: | |
name: wayland | |
- name: Unpack wayland artifact | |
run: tar xf wayland.tar.gz -C / | |
- name: Set python version | |
run: | | |
PYTHON_ROOT=$(find /opt/python -name pp${PYTHON_VERSION/./}-*_pp${PP_VERSION/./}) | |
echo "${PYTHON_ROOT}/bin" >> $GITHUB_PATH | |
shell: bash | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
PP_VERSION: ${{ matrix.pypy-version }} | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
yum -y install \ | |
libinput-devel \ | |
libpciaccess \ | |
libudev-devel \ | |
libxkbcommon-x11-devel \ | |
mesa-libEGL \ | |
mesa-libgbm \ | |
xcb-util \ | |
xcb-util-image \ | |
xcb-util-keysyms \ | |
xcb-util-renderutil \ | |
xcb-util-wm-devel | |
pip install auditwheel build | |
- name: Build wheels | |
run: | | |
python -m build --wheel | |
ls dist/ | |
auditwheel show dist/pywlroots-*.whl | |
auditwheel repair --plat manylinux_2_28_x86_64 -w output_wheels dist/pywlroots-*.whl | |
- name: Upload wheel | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels-pypy-${{ matrix.python-version }} | |
path: output_wheels/*.whl | |
test-wheel: | |
name: Test wheels | |
runs-on: ubuntu-latest | |
needs: [build-wheel-cpython, build-wheel-pypy] | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "pypy-3.8" | |
- "pypy-3.9" | |
- "pypy-3.10" | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt-get install -y --no-install-recommends \ | |
libxkbcommon-dev | |
- name: Download wheels | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-${{ matrix.python-version }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install wheel | |
run: | | |
pip install pywlroots-*.whl | |
pip install setuptools | |
- name: Check installation | |
shell: python | |
run: | | |
import wlroots | |
print(wlroots.__version__) | |
print(wlroots.__wlroots_version__) | |
from wlroots.ffi_build import has_xwayland | |
assert has_xwayland() | |
build-source: | |
name: Build source package | |
runs-on: ubuntu-latest | |
container: quay.io/pypa/manylinux_2_28_x86_64 | |
needs: build-wayland | |
env: | |
python-version: "3.12" | |
steps: | |
- name: Download wayland libraries | |
uses: actions/download-artifact@v3 | |
with: | |
name: wayland | |
- name: Unpack wayland artifact | |
run: tar xf wayland.tar.gz -C / | |
- name: Set python version | |
run: | | |
PYTHON_ROOT=$(find /opt/python -name cp${PYTHON_VERSION/./}-*) | |
echo "${PYTHON_ROOT}/bin" >> $GITHUB_PATH | |
shell: bash | |
env: | |
PYTHON_VERSION: ${{ env.python-version }} | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
yum -y install \ | |
libinput-devel \ | |
libpciaccess \ | |
libudev-devel \ | |
libxkbcommon-x11-devel \ | |
mesa-libEGL \ | |
mesa-libgbm \ | |
xcb-util \ | |
xcb-util-image \ | |
xcb-util-keysyms \ | |
xcb-util-renderutil \ | |
xcb-util-wm-devel | |
pip install build | |
- name: Build source | |
run: | | |
python -m build --sdist | |
- name: Upload source | |
uses: actions/upload-artifact@v3 | |
with: | |
name: source | |
path: dist/*.tar.gz | |
upload-wheel: | |
name: Upload wheels | |
runs-on: ubuntu-latest | |
needs: [test-wheel, build-source] | |
steps: | |
- name: Download wheels CPython 3.8 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-3.8 | |
path: dist/ | |
- name: Download wheels CPython 3.9 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-3.9 | |
path: dist/ | |
- name: Download wheels CPython 3.10 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-3.10 | |
path: dist/ | |
- name: Download wheels CPython 3.11 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-3.11 | |
path: dist/ | |
- name: Download wheels CPython 3.12 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-3.12 | |
path: dist/ | |
- name: Download wheels PyPy 3.8 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-pypy-3.8 | |
path: dist | |
- name: Download wheels PyPy 3.9 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-pypy-3.9 | |
path: dist | |
- name: Download wheels PyPy 3.10 | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels-pypy-3.10 | |
path: dist | |
- name: Download source | |
uses: actions/download-artifact@v3 | |
with: | |
name: source | |
path: dist/ | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: github.event_name == 'release' | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- name: Publish package to TestPyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
skip_existing: true |