Skip to content

Commit

Permalink
hard pin ubuntu images to avoid network disconnects while GHA migrate…
Browse files Browse the repository at this point in the history
…s ubuntu-latest
  • Loading branch information
mikealfare committed Dec 9, 2024
1 parent 87365f3 commit 0273da4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/integration-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = ({ context }) => {
) {
// always run tests on ubuntu by default
include.push({
os: "ubuntu-latest",
os: "ubuntu-22.04",
adapter,
"python-version": pythonVersion,
});
Expand Down Expand Up @@ -68,7 +68,7 @@ module.exports = ({ context }) => {
for (const adapter of supportedAdapters) {
for (const pythonVersion of supportedPythonVersions) {
include.push({
os: 'ubuntu-latest',
os: 'ubuntu-22.04',
adapter: adapter,
"python-version": pythonVersion,
});
Expand All @@ -78,7 +78,7 @@ module.exports = ({ context }) => {
// additionally include runs for all adapters, on macos and windows,
// but only for the default python version
for (const adapter of supportedAdapters) {
for (const operatingSystem of ["windows-latest", "macos-14"]) {
for (const operatingSystem of ["windows-22.04", "macos-14"]) {
include.push({
os: operatingSystem,
adapter: adapter,
Expand Down

0 comments on commit 0273da4

Please sign in to comment.