File: tests.yml

package info (click to toggle)
meson-python 0.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,328 kB
  • sloc: python: 3,114; ansic: 304; cpp: 16; makefile: 8
file content (317 lines) | stat: -rw-r--r-- 9,276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# SPDX-FileCopyrightText: 2021 The meson-python developers
#
# SPDX-License-Identifier: MIT

name: tests

on:
  push:
    branches:
      - main
      - release-*
  pull_request:
    branches:
      - main
      - release-*
    paths:
      # This is spelt like this to do not ignore the docs/examples/ folder.
      - '**'
      - '!docs/**'
      - '!CHANGELOG.rst'
      - '!LICENSE'
      - '!LICENSES/**'
      - '!README.rst'
      - '!.github/workflows/docs.yml'
  workflow_dispatch:
    # Allow to run manually

env:
  FORCE_COLOR: 1
  PIP_DISABLE_PIP_VERSION_CHECK: 1

concurrency:
  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          # macOS 14 on arm64 is covered by the Cirrus CI jobs, stick to macOS
          # on x86-64 here as long as we can: macOS 15 is currently planned as
          # the last supported image based on Intel CPU on GitHub Actions.
          - macos-15-intel
          - windows-latest
        python:
          - '3.9'
          - '3.14'
        meson:
          -
        dependencies:
          -
        include:
          - os: ubuntu-latest
            python: 'pypy-3.9'
          - os: ubuntu-latest
            python: 'pypy-3.11'
          - os: ubuntu-latest
            python: '3.10'
          # Test with older supported Meson version.  Meson up to
          # version 1.2.3 requires distutils, which has been removed
          # from the stdlib in Python 3.12, thus test with Pythn 3.11.
          # To avoid having too many CI jobs, combine this with tests
          # with the minimum version of other dependencies.
          - os: ubuntu-latest
            python: '3.11'
            meson: '~=0.64.0'
          - os: ubuntu-latest
            python: '3.11'
            meson: '~=1.0.0'
          - os: ubuntu-latest
            python: '3.11'
            meson: '~=1.1.0'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.2.3'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.3.0'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.4.0'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.5.0'
            dependencies: 'packaging==23.2 pyproject-metadata==0.9.0'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.6.0'
            dependencies: 'pyproject-metadata==0.9.0'
          - os: ubuntu-latest
            python: '3.12'
            meson: '~=1.7.0'
            dependencies: 'packaging==23.2'
          - os: ubuntu-latest
            python: '3.13'
            meson: '~=1.8.0'
          # Test with Meson master branch.
          - os: ubuntu-latest
            python: '3.14'
            meson: '@git+https://github.com/mesonbuild/meson.git'
          - os: windows-latest
            python: '3.14'
            meson: '@git+https://github.com/mesonbuild/meson.git'

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Set up target Python
        uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python }}

      - name: Install Ninja
        run: sudo apt-get install ninja-build
        if: ${{ runner.os == 'Linux' }}

      - name: Install Ninja
        run: brew install ninja
        if: ${{ runner.os == 'macOS' }}

      - name: Install Ninja
        run: python -m pip install ninja
        if: ${{ runner.os == 'Windows' }}

      - name: Install Meson
        run: python -m pip install "meson ${{ matrix.meson }}"
        if: ${{ matrix.meson }}

      - name: Install dependencies
        run: python -m pip install ${{ matrix.dependencies }}
        if: ${{ matrix.dependencies }}

      - name: Install
        run: python -m pip install . --group test

      - name: Run tests
        run: python -m pytest --showlocals -vv --cov --cov-report=xml

      - name: Upload coverage report
        uses: codecov/codecov-action@v4
        if: ${{ always() }}
        env:
          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

  msvc:
    runs-on: windows-latest
    strategy:
      fail-fast: false
      matrix:
        python:
          - '3.11'
        meson:
          -

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Set up target Python
        uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python }}

      - name: Install Ninja
        run: python -m pip install ninja

      - name: Setup MSVC
        uses: bus1/cabuild/action/msdevshell@e22aba57d6e74891d059d66501b6b5aed8123c4d  # v1
        with:
          architecture: x64

      - name: Install Meson
        run: python -m pip install "meson==${{ matrix.meson }}"
        if: ${{ matrix.meson }}

      - name: Install
        run: python -m pip install . --group test

      - name: Run tests
        run: python -m pytest --showlocals -vv

  cygwin:
    runs-on: windows-latest
    strategy:
      fail-fast: false
      matrix:
        python:
          - '3.9'
        meson:
          -

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Cygwin
        uses: cygwin/cygwin-install-action@v2
        with:
          packages: >-
            python39
            python39-devel
            python39-pip
            python39-setuptools
            cmake
            gcc-core
            gcc-g++
            git
            make
            ninja

      - name: Fix git dubious ownership
        # This addresses the "fatal: detected dubious ownership in
        # repository" and "fatal: not in a git directory" errors
        # encountered when trying to run Cygwin git in a directory not
        # owned by the current user. This happens when the tests run
        # Cygwin git in a directory outside the Cygwin filesystem.
        run: git config --global --add safe.directory '*'
        shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

      - name: Get pip cache path
        id: pip-cache-path
        run: echo "path=$(cygpath -w $(python -m pip cache dir))" >> $GITHUB_OUTPUT
        shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

      - name: Restore cache
        # Cygwin Python cannot use binary wheels from PyPI. Building
        # some dependencies takes considerable time. Caching the built
        # wheels speeds up the CI job quite a bit.
        uses: actions/cache@v4
        with:
          path: ${{ steps.pip-cache-path.outputs.path }}
          key: cygwin-pip-${{ github.sha }}
          restore-keys: cygwin-pip-

      - name: Install Meson
        run: python -m pip install "meson ${{ matrix.meson }}"
        if: ${{ matrix.meson }}
        shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

      - name: Install
        # Cygwin patches Python's ensurepip module to look for the
        # wheels needed to initialize a new virtual environment in
        # /usr/share/python-wheels/ but nothing in Cygwin actually
        # puts the setuptools and pip wheels there. Fix this.
        run: |
          mkdir /usr/share/python-wheels/
          pushd /usr/share/python-wheels/
          python -m pip download setuptools pip
          popd
          python -m pip install . --group test
        shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

      - name: Run tests
        run: python -m pytest --showlocals -vv
        shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

  homebrew:
    runs-on: macos-latest
    strategy:
      fail-fast: false
      matrix:
        python:
          - '3.9'
          - '3.12'
        meson:
          -

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Homebrew Python
        run: |
          brew install --overwrite python@${{ matrix.python }}
          echo /opt/homebrew/opt/python@${{ matrix.python }}/libexec/bin/ >> $GITHUB_PATH
          python${{ matrix.python }} -m pip config set global.break-system-packages true

      - name: Check Python version
        run: python --version | grep ${{ matrix.python }}

      - name: Install Ninja
        run: brew install ninja

      - name: Install Meson
        run: python -m pip install "meson ${{ matrix.meson }}"
        if: ${{ matrix.meson }}

      - name: Install
        run: python -m pip install . --group test

      - name: Run tests
        run: python -m pytest --showlocals -vv

  mypy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Python
        uses: actions/setup-python@v5
        with:
          python-version: 3.9

      - name: Install dependencies
        run: python -m pip install .

      - name: Install mypy
        run: python -m pip install mypy==1.5.1

      - name: Run mypy
        run: mypy -p mesonpy