Skip to content

Commit

Permalink
Accomodated rollout of Ubuntu 24.04 on GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Dec 12, 2024
1 parent fc011fb commit 4416743
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,31 @@ jobs:
echo "matrix={ \
\"os\": [ \"ubuntu-latest\", \"macos-latest\", \"windows-latest\" ], \
\"python-version\": [ \"3.8\", \"3.9\", \"3.10\", \"3.11\", \"3.12\", \"3.13\" ], \
\"package_level\": [ \"minimum\", \"latest\" ] \
\"package_level\": [ \"minimum\", \"latest\" ], \
\"exclude\": [ \
{ \
\"os\": \"ubuntu-latest\", \
\"python-version\": \"3.8\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"ubuntu-latest\", \
\"python-version\": \"3.8\", \
\"package_level\": \"latest\" \
} \
], \
\"include\": [ \
{ \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.8\", \
\"package_level\": \"minimum\" \
}, \
{ \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.8\", \
\"package_level\": \"latest\" \
} \
] \
}" >> $GITHUB_OUTPUT; \
else \
echo "matrix={ \
Expand All @@ -45,7 +69,7 @@ jobs:
\"package_level\": [ \"minimum\", \"latest\" ], \
\"include\": [ \
{ \
\"os\": \"ubuntu-latest\", \
\"os\": \"ubuntu-22.04\", \
\"python-version\": \"3.8\", \
\"package_level\": \"minimum\" \
}, \
Expand Down
2 changes: 2 additions & 0 deletions changes/noissue.1.cleanup.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Accommodated rollout of Ubuntu 24.04 on GitHub Actions by using ubuntu-22.04
as the OS image for Python 3.8 based test runs.

0 comments on commit 4416743

Please sign in to comment.