Skip to content

Commit 1bc254e

Browse files
Merge branch 'main' of https://github.com/pulp/pulpcore into oidc-authentication-core
# Conflicts: # pulpcore/app/access_policy.py # pyproject.toml
2 parents f429568 + ead1348 commit 1bc254e

110 files changed

Lines changed: 2719 additions & 503 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ci/ansible/settings.py.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
SECRET_KEY = "{{ django_secret }}"
12
CONTENT_ORIGIN = "{{ pulp_scheme }}://pulp:{{ 443 if pulp_scheme == 'https' else 80 }}"
23
ANSIBLE_API_HOSTNAME = "{{ pulp_scheme }}://pulp:{{ 443 if pulp_scheme == 'https' else 80 }}"
34
ANSIBLE_CONTENT_HOSTNAME = "{{ pulp_scheme }}://pulp:{{ 443 if pulp_scheme == 'https' else 80 }}/pulp/content"

.ci/ansible/start_container.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ansible.builtin.template:
1919
src: "settings.py.j2"
2020
dest: "settings/settings.py"
21+
vars:
22+
django_secret: "lookup('community.general.random_string', length=50, overwrite_all='abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)')"
2123

2224
- name: "Setup docker networking"
2325
community.docker.docker_network:

.ci/assets/ci_constraints.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ azure-storage-blob!=12.28.*
1717

1818
pycares<5
1919
# older aiodns versions don't pin pycares UB, and are broken by pycares>=5
20+
21+
22+
pytest-django!=4.13.0
23+
# This version seems not to not have a proper requirement on Django.

.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)

.github/workflows/update_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
fetch-depth: 0
109109
path: "pulpcore"
110-
ref: "3.114"
110+
ref: "3.116"
111111

112112
- name: "Run update"
113113
working-directory: "pulpcore"
@@ -116,21 +116,21 @@ jobs:
116116
117117
- name: "Create Pull Request for CI files"
118118
uses: "peter-evans/create-pull-request@v8"
119-
id: "create_pr_3_114"
119+
id: "create_pr_3_116"
120120
with:
121121
token: "${{ secrets.RELEASE_TOKEN }}"
122122
path: "pulpcore"
123123
committer: "pulpbot <pulp-infra@redhat.com>"
124124
author: "pulpbot <pulp-infra@redhat.com>"
125-
title: "Update CI files for branch 3.114"
126-
branch: "update-ci/3.114"
127-
base: "3.114"
125+
title: "Update CI files for branch 3.116"
126+
branch: "update-ci/3.116"
127+
base: "3.116"
128128
delete-branch: true
129129
- name: "Mark PR automerge"
130130
working-directory: "pulpcore"
131131
run: |
132-
gh pr merge --rebase --auto "${{ steps.create_pr_3_114.outputs.pull-request-number }}"
133-
if: "steps.create_pr_3_114.outputs.pull-request-number"
132+
gh pr merge --rebase --auto "${{ steps.create_pr_3_116.outputs.pull-request-number }}"
133+
if: "steps.create_pr_3_116.outputs.pull-request-number"
134134
env:
135135
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
136136
continue-on-error: true

0 commit comments

Comments
 (0)