Skip to content

Commit 2f9a6b6

Browse files
authored
Remove version 1.0 of the test that uses an unavailable gearmand Docker image (#21127)
* remove 1.0 version * Update hatch.toml * conflict
1 parent 15d96cc commit 2f9a6b6

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

gearmand/hatch.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,10 @@
22

33
[[envs.default.matrix]]
44
python = ["3.12"]
5-
version = ["1.0", "1.1"]
5+
version = ["1.1"]
66

77
[envs.default.overrides]
88
matrix.version.env-vars = [
9-
{ key = "GEARMAND_VERSION", value = "1.0.6", if = ["1.0"] },
10-
{ key = "DOCKER_IMAGE", value = "kendu/gearman", if = ["1.0"] },
11-
# TODO `latest` is the only tag available and is 6 years old. Find another image and pin it.
12-
{ key = "DOCKER_TAG", value = "latest", if = ["1.0"] },
13-
14-
{ key = "GEARMAND_VERSION", value = "1.1.18", if = ["1.1"] },
15-
{ key = "DOCKER_IMAGE", value = "artefactual/gearmand", if = ["1.1"] },
16-
{ key = "DOCKER_TAG", value = "1.1.18-alpine", if = ["1.1"] },
9+
{ key = "GEARMAND_VERSION", value = "1.1.18" },
10+
{ key = "DOCKER_TAG", value = "1.1.18-alpine" },
1711
]

gearmand/tests/compose/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
gearman:
3-
image: ${DOCKER_IMAGE}:${DOCKER_TAG}
3+
image: artefactual/gearmand:${DOCKER_TAG}
44
ports:
55
- 15440:4730
66
command: ["--log-file", "/var/log/gearmand.log"]

0 commit comments

Comments
 (0)