Skip to content

Commit ca8970c

Browse files
committed
show old and new idents
This should help figuring out why the mechanism to avoid unnessary builds doesn't work.
1 parent 70e6597 commit ca8970c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/matrix.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@ function getImageTag()
9797
$ident = join('-', [$release, $commit, $image, $self]);
9898
$cache = '.github/matrix.cache/' . $release;
9999

100-
fwrite(STDERR, "Ident: $ident\n");
101100
$last = @file_get_contents($cache);
101+
fwrite(STDERR, "Old: $last\n");
102+
fwrite(STDERR, "New: $ident\n");
102103
if ($last === $ident) {
103104
// this combination has been built before
104105
fwrite(STDERR, "No change. Skipping $release\n");

0 commit comments

Comments
 (0)