Commit d7cdece 1 parent 2bfd599 commit d7cdece Copy full SHA for d7cdece
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -167,15 +167,13 @@ enable_testing()
167
167
# However, ubuntu 20.04 has cmake 3.16.3. So this is a roundabout trick.
168
168
list (APPEND DIST_IDS ubuntu ubuntu rocky rocky almalinux alpine)
169
169
list (APPEND DIST_VERS 20.04 22.04 8.9 9.3 9.3 3.19)
170
- list (APPEND DIST_PKGS deb deb rpm rpm rpm static )
171
170
172
171
list (LENGTH DIST_IDS _DIST_LISTLEN)
173
172
math (EXPR DIST_LISTLEN "${_DIST_LISTLEN} - 1" )
174
173
175
174
foreach (x RANGE ${DIST_LISTLEN} )
176
175
list (GET DIST_IDS ${x} DIST_ID)
177
176
list (GET DIST_VERS ${x} DIST_VER)
178
- list (GET DIST_PKGS ${x} DIST_PKG)
179
177
180
178
set (DOCKER_IMAGE mscp-${DIST_ID} :${DIST_VER} )
181
179
set (DOCKER_INDEX ${DIST_ID} -${DIST_VER} )
@@ -203,7 +201,9 @@ foreach(x RANGE ${DIST_LISTLEN})
203
201
COMMENT "Test mscp in ${DOCKER_IMAGE} container"
204
202
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
205
203
COMMAND
206
- ${CE} run --init --rm --sysctl net.ipv6.conf.all .disable_ipv6=0
204
+ ${CE} run --init --rm
205
+ --sysctl net.ipv6.conf.all .disable_ipv6=0
206
+ --add-host=ip6-localhost:::1
207
207
${DOCKER_IMAGE} /mscp/scripts/test -in-container.sh)
208
208
209
209
list (APPEND DOCKER_BUILDS docker-build -${DOCKER_INDEX} )
You can’t perform that action at this time.
0 commit comments