Skip to content

Commit

Permalink
ci: bump to python 3.11 in GitHub Actions
Browse files Browse the repository at this point in the history
- Also drop py3.5, py3.6 since they are no longer supported in the
  github 22.04 runners

Signed-off-by: Jason Zaman <[email protected]>
  • Loading branch information
perfinion authored and bachradsusi committed Feb 1, 2023
1 parent 4622ac0 commit b5f0162
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,30 @@ jobs:
matrix:
compiler: [gcc, clang]
python-ruby-version:
- {python: '3.10', ruby: '3.1'}
- {python: '3.10', ruby: '3.1', other: test-flags-override}
- {python: '3.10', ruby: '3.1', other: test-debug}
- {python: '3.10', ruby: '3.1', other: linker-bfd}
- {python: '3.10', ruby: '3.1', other: linker-gold}
- {python: '3.11', ruby: '3.1'}
- {python: '3.11', ruby: '3.1', other: 'test-flags-override'}
- {python: '3.11', ruby: '3.1', other: 'test-debug'}
- {python: '3.11', ruby: '3.1', other: 'linker-bfd'}
- {python: '3.11', ruby: '3.1', other: 'linker-gold'}
# Test several Python versions with the latest Ruby version
- {python: '3.10', ruby: '3.1'}
- {python: '3.9', ruby: '3.1'}
- {python: '3.8', ruby: '3.1'}
- {python: '3.7', ruby: '3.1'}
- {python: '3.6', ruby: '3.1'}
- {python: '3.5', ruby: '3.1'}
- {python: 'pypy3.7', ruby: '3.1'}
# Test several Ruby versions with the latest Python version
- {python: '3.10', ruby: '3.0'}
- {python: '3.10', ruby: '2.7'}
- {python: '3.10', ruby: '2.6'}
- {python: '3.10', ruby: '2.5'}
- {python: '3.11', ruby: '3.0'}
- {python: '3.11', ruby: '2.7'}
- {python: '3.11', ruby: '2.6'}
- {python: '3.11', ruby: '2.5'}
exclude:
- compiler: clang
python-ruby-version: {python: '3.10', ruby: '3.1', other: linker-bfd}
python-ruby-version: {python: '3.11', ruby: '3.1', other: 'linker-bfd'}
- compiler: clang
python-ruby-version: {python: '3.10', ruby: '3.1', other: linker-gold}
python-ruby-version: {python: '3.11', ruby: '3.1', other: 'linker-gold'}
include:
- compiler: gcc
python-ruby-version: {python: '3.10', ruby: '3.1', other: sanitizers}
python-ruby-version: {python: '3.11', ruby: '3.1', other: 'sanitizers'}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit b5f0162

Please sign in to comment.