-
Notifications
You must be signed in to change notification settings - Fork 25
44 lines (42 loc) · 1.42 KB
/
python-ci-full.yml
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
name: TileDB-SOMA Python CI (Full)
# This workflow calls ./python-ci-single.yml on the full {os} x {python version}
# matrix. Since that's CI-resource-intensive, it runs only for main branch and
# releases.
on:
push:
branches:
- main
- 'release-*'
release:
types: [published]
# You can also invoke this workflow manually from
# https://github.com/single-cell-data/TileDB-SOMA/actions/workflows/python-ci-full.yml
# to test a working branch on the full matrix.
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
# TODO: decide on Windows CI coverage
os: [ubuntu-24.04, macos-latest]
# os: [ubuntu-24.04, macos-latest, windows-2019]
# TODO: add 3.12
# https://github.com/single-cell-data/TileDB-SOMA/issues/1849
python-version: ['3.9', '3.10', '3.11', '3.12']
include:
- runs-on: ubuntu-24.04
cc: gcc-13
cxx: g++-13
- runs-on: macos-latest
cc: clang
cxx: clang++
uses: ./.github/workflows/python-ci-single.yml
with:
os: ${{ matrix.os }}
python_version: ${{ matrix.python-version }}
cc: ${{ matrix.cc }}
cxx: ${{ matrix.cxx }}
report_codecov: ${{ matrix.os == 'ubuntu-24.04' && matrix.python-version == '3.11' }}
run_lint: ${{ matrix.os == 'ubuntu-24.04' && matrix.python-version == '3.11' }}
secrets: inherit