aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaman <jason@perfinion.com>2023-01-15 15:34:26 -0800
committerPetr Lautrbach <lautrbach@redhat.com>2023-02-01 16:48:21 +0100
commitb5f01626fef4cc51b17eef5847c12a470cb8f49e (patch)
tree7089332b23c0b92f51317f29b15478f83cd02415
parent4622ac0064f63fef0821fe0b0aaa52054e8c5ed3 (diff)
downloadselinux-b5f01626fef4cc51b17eef5847c12a470cb8f49e.tar.gz
ci: bump to python 3.11 in GitHub Actions
- Also drop py3.5, py3.6 since they are no longer supported in the github 22.04 runners Signed-off-by: Jason Zaman <jason@perfinion.com>
-rw-r--r--.github/workflows/run_tests.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml
index db0e1af5..198ba7b6 100644
--- a/.github/workflows/run_tests.yml
+++ b/.github/workflows/run_tests.yml
@@ -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