77
77
printf "\n\shpc test ============================================\n"
78
78
shpc test python:3.9.5-alpine
79
79
80
+ if [ "${{ matrix.container_tech }}" == "podman" ]; then
81
+ printf "Podman images before install\n"
82
+ podman images
83
+ elif [ "${{ matrix.container_tech }}" == "docker" ]; then
84
+ printf "Docker images before install\n"
85
+ docker images
86
+ done
87
+
80
88
shpc install python:3.9.5-alpine
81
89
82
90
module use ./modules
@@ -101,6 +109,14 @@ jobs:
101
109
grep --quiet 'Python 3.9.5' test_output
102
110
rm test_output
103
111
shpc uninstall --force python:3.9.5-alpine
112
+
113
+ if [ "${{ matrix.container_tech }}" == "podman" ]; then
114
+ printf "Podman images after uninstall\n"
115
+ podman images
116
+ elif [ "${{ matrix.container_tech }}" == "docker" ]; then
117
+ printf "Docker images after uninstall\n"
118
+ docker images
119
+ done
104
120
105
121
- name : Run python module tests (tcsh)
106
122
shell : tcsh -e {0}
@@ -120,6 +136,14 @@ jobs:
120
136
shpc config set module_sys:${{ matrix.module }}
121
137
shpc config set enable_tty:false
122
138
139
+ if [ "${{ matrix.container_tech }}" == "podman" ]; then
140
+ printf "Podman images before install\n"
141
+ podman images
142
+ elif [ "${{ matrix.container_tech }}" == "docker" ]; then
143
+ printf "Docker images before install\n"
144
+ docker images
145
+ done
146
+
123
147
shpc install python:3.9.5-alpine
124
148
125
149
module use ./modules
@@ -144,3 +168,12 @@ jobs:
144
168
grep --quiet 'Python 3.9.5' test_output
145
169
rm test_output
146
170
shpc uninstall --force python:3.9.5-alpine
171
+
172
+ if [ "${{ matrix.container_tech }}" == "podman" ]; then
173
+ printf "Podman images after uninstall\n"
174
+ podman images
175
+ elif [ "${{ matrix.container_tech }}" == "docker" ]; then
176
+ printf "Docker images after uninstall\n"
177
+ docker images
178
+ done
179
+
0 commit comments