Upgrade to mdbx 0.13.10 #141
Workflow file for this run
This file contains hidden or 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: Build | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_wheels: | |
| name: Fast build on ${{ matrix.config.os }} for ${{ matrix.config.cibw }} and ${{ matrix.config.cibw_skip }} | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - os: ubuntu-latest | |
| cibw: "cp310*" | |
| cibw_skip: "*musllinux*" | |
| - os: windows-2022 | |
| cibw: "cp310*" | |
| cibw_skip: "*-win32" | |
| - os: macos-13 | |
| cibw: "cp310*" | |
| cibw_skip: "" | |
| - os: macos-latest | |
| cibw: "cp310*" | |
| cibw_skip: "" | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: '🛠️ Win MSVC 64 setup' | |
| if: contains(matrix.config.os, 'windows') | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: '🛠️ Win MSVC 64 dev cmd setup' | |
| if: contains(matrix.config.os, 'windows') | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| with: | |
| arch: x64 | |
| # Used to host cibuildwheel | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install cibuildwheel | |
| run: python -m pip install cibuildwheel==2.22.0 | |
| - name: Build wheels | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| env: | |
| CIBW_BUILD_FRONTEND: build # pip backend doesn't seem including our dynamic libraries | |
| CIBW_BUILD: ${{ matrix.config.cibw }} | |
| CIBW_ENVIRONMENT: MACOSX_DEPLOYMENT_TARGET=13.0 SYSTEM_VERSION_COMPAT=0 # Shitty arm macOS | |
| CIBW_BEFORE_BUILD_LINUX: pip install ninja && git fetch --tags | |
| CIBW_BEFORE_BUILD_WINDOWS: choco install ninja git && cd libmdbx && git fetch --tags | |
| CIBW_BEFORE_BUILD_MACOS: brew install ninja git && cd libmdbx && git fetch --tags | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: pytest {package}/tests | |
| CIBW_SKIP: ${{ matrix.config.cibw_skip }} | |
| # to supply options, put them in 'env', like: | |
| # env: | |
| # CIBW_SOME_OPTION: value | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: cibw-wheels-${{ matrix.config.os }}-${{ strategy.job-index }} | |
| path: ./wheelhouse/*.whl | |
| build_wheels_all: | |
| name: Build wheels on ${{ matrix.config.os }} for ${{ matrix.config.cibw }} and ${{ matrix.config.cibw_skip }} | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - os: ubuntu-latest | |
| cibw: "cp311*" | |
| cibw_skip: "*musllinux*" | |
| - os: ubuntu-latest | |
| cibw: "{cp312*,cp313*}" | |
| cibw_skip: "*musllinux*" | |
| - os: windows-2022 | |
| cibw: "cp311*" | |
| cibw_skip: "*-win32" | |
| - os: windows-2022 | |
| cibw: "{cp312*,cp313*}" | |
| cibw_skip: "*-win32" | |
| - os: macos-13 | |
| cibw: "{cp311*,cp312*,cp313*}" | |
| cibw_skip: "" | |
| - os: macos-latest | |
| cibw: "{cp311*,cp312*,cp313*}" | |
| cibw_skip: "" | |
| if: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: '🛠️ Setup Dependency' | |
| if: contains(matrix.config.os, 'ubuntu') | |
| run: sudo apt update && sudo apt install ninja-build -y | |
| - name: '🛠️ Win MSVC 64 setup' | |
| if: contains(matrix.config.os, 'windows') | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: '🛠️ Win MSVC 64 dev cmd setup' | |
| if: contains(matrix.config.os, 'windows') | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| with: | |
| arch: x64 | |
| # Used to host cibuildwheel | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install cibuildwheel | |
| run: python -m pip install cibuildwheel==2.22.0 | |
| - name: Build wheels | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| env: | |
| CIBW_BUILD_FRONTEND: build # pip backend doesn't seem including our dynamic libraries | |
| CIBW_BUILD: ${{ matrix.config.cibw }} | |
| CIBW_ENVIRONMENT: MACOSX_DEPLOYMENT_TARGET=13.0 SYSTEM_VERSION_COMPAT=0 # Shitty arm macOS | |
| CIBW_BEFORE_BUILD_LINUX: pip install ninja && git fetch --tags | |
| CIBW_BEFORE_BUILD_WINDOWS: choco install ninja cmake git && cd libmdbx && git fetch --tags | |
| CIBW_BEFORE_BUILD_MACOS: brew install ninja git && cd libmdbx && git fetch --tags | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: pytest {package}/tests | |
| CIBW_SKIP: ${{ matrix.config.cibw_skip }} | |
| # to supply options, put them in 'env', like: | |
| # env: | |
| # CIBW_SOME_OPTION: value | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: cibw-wheels-${{ matrix.config.os }}-${{ strategy.job-index }}-all | |
| path: ./wheelhouse/*.whl | |
| make_sdist: | |
| name: Make SDist | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: Build SDist | |
| run: | | |
| sudo apt update && sudo apt install ninja-build git build-essential -y | |
| cd libmdbx && git fetch --tags && make V=1 && cd .. | |
| python3 -m pip install -U pip build | |
| python3 -m build --sdist | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: sdist-archive | |
| path: dist/*.tar.gz | |
| publish: | |
| needs: [ build_wheels, make_sdist, build_wheels_all ] | |
| environment: pypi | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags') | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| merge-multiple: true | |
| path: dist | |
| - name: Show downloaded artifacts | |
| run: ls -laR dist | |
| - name: 'Publish distribution to PyPI' | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TOKEN }} | |