Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions gearmand/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,10 @@

[[envs.default.matrix]]
python = ["3.12"]
version = ["1.0", "1.1"]
version = ["1.1"]

[envs.default.overrides]
matrix.version.env-vars = [
{ key = "GEARMAND_VERSION", value = "1.0.6", if = ["1.0"] },
{ key = "DOCKER_IMAGE", value = "kendu/gearman", if = ["1.0"] },
# TODO `latest` is the only tag available and is 6 years old. Find another image and pin it.
{ key = "DOCKER_TAG", value = "latest", if = ["1.0"] },

{ key = "GEARMAND_VERSION", value = "1.1.18", if = ["1.1"] },
{ key = "DOCKER_IMAGE", value = "artefactual/gearmand", if = ["1.1"] },
{ key = "DOCKER_TAG", value = "1.1.18-alpine", if = ["1.1"] },
{ key = "GEARMAND_VERSION", value = "1.1.18" },
{ key = "DOCKER_TAG", value = "1.1.18-alpine" },
]
2 changes: 1 addition & 1 deletion gearmand/tests/compose/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
gearman:
image: ${DOCKER_IMAGE}:${DOCKER_TAG}
image: artefactual/gearmand:${DOCKER_TAG}
ports:
- 15440:4730
command: ["--log-file", "/var/log/gearmand.log"]
Expand Down
Loading