You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/integration/targets/docker_compose_v2/tasks/tests/build.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -121,11 +121,14 @@
121
121
- present_2_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
122
122
- present_2 is not changed
123
123
- present_2.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
124
-
- present_3_check is changed
124
+
# - present_3_check is changed -- whether this is true depends on a combination of Docker CLI and Docker Compose version...
125
+
# Compose 2.37.3 with Docker 28.2.x results in 'changed', while Compose 2.37.3 with Docker 28.3.0 results in 'not changed'.
126
+
# It seems that Docker is now clever enough to notice that nothing is rebuilt...
125
127
- present_3_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
126
128
- ((present_3 is changed) if docker_compose_version is version('2.31.0', '>=') and docker_compose_version is version('2.32.2', '<') else (present_3 is not changed))
127
129
- present_3.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
128
-
- present_4_check is changed
130
+
# - present_4_check is changed
131
+
# Same as above...
129
132
- present_4_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
130
133
- present_4 is not changed
131
134
- present_4.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
0 commit comments