Skip to content

Commit

Permalink
CI: Use CrateDB nightly for PRs on Linux, lock version only on macOS
Browse files Browse the repository at this point in the history
Problem: There are no nightly builds for macOS, so the test matrix has
an anomaly. C'est la vie.
  • Loading branch information
amotl committed Nov 1, 2024
1 parent 447434c commit 58a17ca
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:
on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-22.04', 'macos-latest']
os: ['ubuntu-22.04']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
cratedb-version: ['5.8.3']
cratedb-version: ['nightly']

# To save resources, only verify the most recent Python versions on macOS.
exclude:
- os: 'macos-latest'
python-version: '3.7'
include:
- os: 'macos-latest'
python-version: '3.8'
cratedb-version: '5.9.2'
python-version: '3.11'
- os: 'macos-latest'
python-version: '3.9'
cratedb-version: '5.9.2'
python-version: '3.12'
- os: 'macos-latest'
python-version: '3.10'

fail-fast: false
cratedb-version: '5.9.2'
python-version: '3.13'

env:
CRATEDB_VERSION: ${{ matrix.cratedb-version }}
Expand Down

0 comments on commit 58a17ca

Please sign in to comment.