Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .ci/run_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,22 @@ else
fi
export PULP_CONTENT_ORIGIN

if [ "${PULP_DOMAIN_ENABLED:-}" = "true" ]
then
# shellcheck disable=SC2089
export PULP_ENABLED_PLUGINS="['pulp-certguard', 'pulp_container', 'pulp_file', 'pulp_python', 'pulp_rpm']"
fi

# shellcheck disable=SC2090
"${CONTAINER_RUNTIME}" \
run ${RM:+--rm} \
--env S6_KEEP_ENV=1 \
${OAS_VERSION:+--env PULP_SPECTACULAR_SETTINGS__OAS_VERSION="${OAS_VERSION}"} \
${PULP_HTTPS:+--env PULP_HTTPS} \
${PULP_OAUTH2:+--env PULP_OAUTH2} \
${PULP_API_ROOT:+--env PULP_API_ROOT} \
${PULP_DOMAIN_ENABLED:+--env PULP_DOMAIN_ENABLED} \
${PULP_ENABLED_PLUGINS:+--env PULP_ENABLED_PLUGINS} \
--env PULP_CONTENT_ORIGIN \
--detach \
--name "pulp-ephemeral" \
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
oas_version: "3.1.1"
python: "3.11"
upper_bounds: true
- image_tag: "3.73"
pulp_domain_enabled: "true"
python: "3.10"
- image_tag: "3.63"
pulp_https: "true"
pulp_oauth2: "true"
Expand Down Expand Up @@ -107,6 +110,7 @@ jobs:
PULP_HTTPS: "${{ matrix.pulp_https }}"
PULP_OAUTH2: "${{ matrix.pulp_oauth2 }}"
PULP_API_ROOT: "${{ matrix.pulp_api_root }}"
PULP_DOMAIN_ENABLED: "${{ matrix.pulp_domain_enabled }}"
OAS_VERSION: "${{ matrix.oas_version }}"
run: |
.ci/run_container.sh make livetest
Expand Down
Loading