Skip to content
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

fix IPA git commit/branch refference #870

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions jenkins/scripts/dynamic_worker_workflow/build_ipa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ METADATA_PATH="/tmp/metadata.txt"

sudo rm -rf "${IPA_BUILD_WORKSPACE}"
# Update apt packages
sudo apt-get update -y
sudo apt-get update -y

# Install required packages
sudo apt-get install --yes python3-pip python3-virtualenv qemu-utils
Expand Down Expand Up @@ -114,7 +114,8 @@ python3 -m pip install "./${IPA_BUILDER_PATH}"
# Configure the IPA builder to pull the IPA source from Nordix fork
export DIB_REPOLOCATION_ironic_python_agent="${IPA_BUILD_WORKSPACE}/ironic-python-agent"
export DIB_REPOREF_requirements="${OPENSTACK_REQUIREMENTS_REF}"
export DIB_REPOREF_ironic_python_agent="${IPA_REF}"
export DIB_REPOREF_ironic_python_agent="${IPA_BRANCH}"
export DIB_REPOLOCATION_ironic_python_agent="${IPA_REPO}"
export DIB_DEV_USER_USERNAME=metal3
if [ "${ENABLE_DEV_USER_PASS}" == "true" ]; then
export DIB_DEV_USER_PWDLESS_SUDO=yes
Expand Down