Skip to content

Commit 595b998

Browse files
authored
Merge pull request #1252 from stackhpc/fix-2024.1-workflow
Add missing -r option (pip)
2 parents da731a1 + b35a903 commit 595b998

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/overcloud-host-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
python3 -m venv kayobe &&
7575
source kayobe/bin/activate &&
7676
pip install -U pip &&
77-
pip install ../src/kayobe-config/requirements.txt
77+
pip install -r ../src/kayobe-config/requirements.txt
7878
7979
- name: Install terraform
8080
uses: hashicorp/setup-terraform@v2

.github/workflows/overcloud-host-image-promote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python3 -m venv kayobe &&
5757
source kayobe/bin/activate &&
5858
pip install -U pip &&
59-
pip install ../src/kayobe-config/requirements.txt
59+
pip install -r ../src/kayobe-config/requirements.txt
6060
6161
- name: Bootstrap the control host
6262
run: |

.github/workflows/overcloud-host-image-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python3 -m venv kayobe &&
5757
source kayobe/bin/activate &&
5858
pip install -U pip &&
59-
pip install ../src/kayobe-config/requirements.txt
59+
pip install -r ../src/kayobe-config/requirements.txt
6060
6161
- name: Bootstrap the control host
6262
run: |

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ jobs:
139139
python3 -m venv kayobe &&
140140
source kayobe/bin/activate &&
141141
pip install -U pip &&
142-
pip install ../src/kayobe-config/requirements.txt
142+
pip install -r ../src/kayobe-config/requirements.txt
143143
144144
# Required for Pulp auth proxy deployment and Docker registry login.
145145
# Normally installed during host configure.
146146
- name: Install Docker Python SDK
147147
run: |
148148
sudo pip install docker 'requests<2.32.0'
149-
149+
150150
- name: Get Kolla tag
151151
id: write-kolla-tag
152152
run: echo "kolla-tag=${{ needs.generate-tag.outputs.openstack_release }}-${{ matrix.distro }}-${{ matrix.distro == 'rocky' && '9' || 'jammy' }}-${{ needs.generate-tag.outputs.datetime_tag }}" >> $GITHUB_OUTPUT

doc/source/contributor/environments/ci-aio.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Create a virtual environment and install Kayobe:
115115
python3 -m venv kayobe
116116
source kayobe/bin/activate
117117
pip install -U pip
118-
pip install ../src/kayobe-config/requirements.txt
118+
pip install -r ../src/kayobe-config/requirements.txt
119119
popd
120120
121121
Add initial network configuration:

doc/source/contributor/environments/ci-builder.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Create a virtual environment and install Kayobe:
7070
python3 -m venv kayobe
7171
source kayobe/bin/activate
7272
pip install -U pip
73-
pip install ../src/kayobe-config/requirements.txt
73+
pip install -r ../src/kayobe-config/requirements.txt
7474
popd
7575
7676
Add initial network configuration:

etc/kayobe/environments/ci-aio/automated-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ set +u
6060
source kayobe/bin/activate
6161
set -u
6262
pip install -U pip
63-
pip install ../src/kayobe-config/requirements.txt
63+
pip install -r ../src/kayobe-config/requirements.txt
6464
popd
6565

6666
if ! ip l show breth1 >/dev/null 2>&1; then

0 commit comments

Comments
 (0)