-
-
Notifications
You must be signed in to change notification settings - Fork 630
CI: Update Linux platforms / runners, remove ubuntu-trusty
, opensuse-{15.3,15.4}
#37351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8f25766
5ab502c
40b03f3
f9fc1f7
de1677b
54615a8
10b3238
45d3942
bce5774
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// The command "tox -e update_docker_platforms" | ||
// creates .devcontainer/portability-*-*/devcontainer.json | ||
// from .devcontainer/portability-devcontainer.json.in | ||
// See https://aka.ms/devcontainer.json for format details. | ||
{ | ||
"name": "ubuntu-noble-minimal (≥ 8-core)", | ||
"build": { | ||
"dockerfile": "portability-Dockerfile", | ||
// See tox.ini for definitions | ||
"args": { | ||
"SYSTEM_FACTOR": "ubuntu-noble", | ||
"PACKAGE_FACTOR": "minimal", | ||
"DOCKER_TARGET": "with-targets", | ||
"DOCKER_TAG": "dev" | ||
} | ||
}, | ||
"containerEnv": { | ||
"MAKE": "make -j4" | ||
}, | ||
"onCreateCommand": ".devcontainer/onCreate.sh", | ||
"updateContentCommand": ".devcontainer/portability-updateContent.sh", | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../portability-Dockerfile |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// The command "tox -e update_docker_platforms" | ||
// creates .devcontainer/portability-*-*/devcontainer.json | ||
// from .devcontainer/portability-devcontainer.json.in | ||
// See https://aka.ms/devcontainer.json for format details. | ||
{ | ||
"name": "ubuntu-noble-standard (≥ 8-core)", | ||
"build": { | ||
"dockerfile": "portability-Dockerfile", | ||
// See tox.ini for definitions | ||
"args": { | ||
"SYSTEM_FACTOR": "ubuntu-noble", | ||
"PACKAGE_FACTOR": "standard", | ||
"DOCKER_TARGET": "with-targets", | ||
"DOCKER_TAG": "dev" | ||
} | ||
}, | ||
"containerEnv": { | ||
"MAKE": "make -j4" | ||
}, | ||
"onCreateCommand": ".devcontainer/onCreate.sh", | ||
"updateContentCommand": ".devcontainer/portability-updateContent.sh", | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../portability-Dockerfile |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
targets: build doc-html | ||
targets_optional: ptest | ||
tox_system_factors: >- | ||
["ubuntu-focal"] | ||
["ubuntu-jammy"] | ||
tox_packages_factors: >- | ||
["standard"] | ||
docker_push_repository: ghcr.io/${{ github.repository }}/ | ||
|
@@ -111,18 +111,11 @@ jobs: | |
["ubuntu-jammy", | ||
"ubuntu-lunar", | ||
"ubuntu-mantic", | ||
"debian-bullseye", | ||
"debian-bookworm", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @orlitzky The changes in this file reduce the platforms tested with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It makes no difference to me. Having e.g. debian-bullseye in the CI is useful only to people who want to use system packages on Debian bullseye. I don't think we have any -- not developers, anyway. |
||
"debian-trixie", | ||
"debian-sid", | ||
"linuxmint-21", | ||
"linuxmint-21.1", | ||
"linuxmint-21.2", | ||
"fedora-33", | ||
"fedora-34", | ||
"fedora-35", | ||
"fedora-36", | ||
"fedora-37", | ||
"fedora-38", | ||
"fedora-39", | ||
"centos-stream-8-python3.9", | ||
|
@@ -131,11 +124,9 @@ jobs: | |
"gentoo-python3.10", | ||
"gentoo-python3.11", | ||
"archlinux-latest", | ||
"opensuse-15.4-gcc_11-python3.10", | ||
"opensuse-15.5-gcc_11-python3.11", | ||
"opensuse-tumbleweed-python3.10", | ||
"opensuse-tumbleweed", | ||
"debian-bullseye-i386"] | ||
"opensuse-tumbleweed"] | ||
docker_push_repository: ghcr.io/${{ github.repository }}/ | ||
max_parallel: 8 | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.