Skip to content

Migrate from setuptools to Meson and meson-python #2052

Migrate from setuptools to Meson and meson-python

Migrate from setuptools to Meson and meson-python #2052

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12-dev'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
set -xe
sudo apt-get update
sudo apt-get install -y --no-install-recommends libxslt-dev libxml2-dev libxml2-utils meson zstd
python -VV
python -m site
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test meson install --destdir /tmp/install-root
run: |
meson setup /tmp/build .
meson install -C /tmp/build --destdir /tmp/install-root
- name: Run tox test env for ${{ matrix.python-version }}
run: tox -vv
env:
TARGET: test