Skip to content

Commit 2408615

Browse files
authored
Merge pull request #1290 from jobselko/centos-ci
Use CentOS Stream 10 for CI
2 parents 3b09a43 + a0c84b8 commit 2408615

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/scripts/before_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pulp_scheme: "https"
5555
image:
5656
name: "pulp"
5757
tag: "ci_build"
58-
ci_base: "ghcr.io/pulp/pulp-ci-centos9:latest"
58+
ci_base: "ghcr.io/pulp/pulp-ci-centos10:latest"
5959
source: "${COMPONENT_SOURCE}"
6060
ci_requirements: $(test -f ci_requirements.txt && echo -n true || echo -n false)
6161
upperbounds: $(test "${TEST}" = "pulp" && echo -n true || echo -n false)

pulp_python/tests/functional/api/test_full_mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_pull_through_install(
3232
# Perform pull-through install
3333
host = urlsplit(distro.base_url).hostname
3434
url = f"{distro.base_url}simple/"
35-
cmd = ("pip", "install", "--trusted-host", host, "-i", url, PACKAGE)
35+
cmd = ("pip", "install", "--no-deps", "--trusted-host", host, "-i", url, PACKAGE)
3636
subprocess.run(cmd, check=True)
3737

3838
stdout = subprocess.run(("pip", "list"), capture_output=True).stdout.decode("utf-8")

template_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
check_commit_message: true
1010
check_manifest: true
1111
check_stray_pulpcore_imports: true
12-
ci_base_image: "ghcr.io/pulp/pulp-ci-centos9"
12+
ci_base_image: "ghcr.io/pulp/pulp-ci-centos10"
1313
ci_env: {}
1414
ci_trigger: "{pull_request: {branches: ['*']}}"
1515
cli_package: "pulp-cli"

0 commit comments

Comments
 (0)