Skip to content

Commit c074990

Browse files
committed
Add environment printing for test
1 parent c1afb4a commit c074990

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ jobs:
152152
# Normally installed during host configure.
153153
- name: Install Docker Python SDK
154154
run: |
155-
sudo pip install docker 'requests<2.32.0'
156-
155+
sudo pip install docker
156+
157157
- name: Get Kolla tag
158158
id: write-kolla-tag
159159
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
@@ -181,6 +181,13 @@ jobs:
181181
- name: Create build logs output directory
182182
run: mkdir image-build-logs
183183

184+
- name: Print environment
185+
run: |
186+
echo $(cat /etc/os-release) \
187+
; echo $(uname -a) \
188+
; echo $(docker --version)
189+
190+
184191
- name: Build kolla overcloud images
185192
id: build_overcloud_images
186193
continue-on-error: true

0 commit comments

Comments
 (0)