Skip to content

Commit a4bc357

Browse files
committed
build: return ExecErrorCodeGeneric when git operation fails
Only propagate error message from git and let buildah reflect error code `125`. Reason: Buildah should return predicatable error code from the set of defined error codes in exec_codes.go at https://github.com/containers/buildah/blob/main/pkg/cli/exec_codes.go#L6 anything other that predefined error codes introduces inconsistency thus making testing difficult in CI and podman. Users should expect buildah to refect ExecErrorCodeGeneric with error message kept intact from the underlying `git` commands. Signed-off-by: flouthoc <[email protected]>
1 parent 898fbb2 commit a4bc357

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

define/types.go

+12-4
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,18 @@ func cloneToDirectory(url, dir string) ([]byte, string, error) {
267267
cmd = exec.Command("git", "init", dir)
268268
combinedOutput, err := cmd.CombinedOutput()
269269
if err != nil {
270-
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git init`: %w", err)
270+
// Return err.Error() instead of err as we want buildah to override error code with more predictable
271+
// value.
272+
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git init`: %s", err.Error())
271273
}
272274
// add origin
273275
cmd = exec.Command("git", "remote", "add", "origin", gitRepo)
274276
cmd.Dir = dir
275277
combinedOutput, err = cmd.CombinedOutput()
276278
if err != nil {
277-
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git remote add`: %w", err)
279+
// Return err.Error() instead of err as we want buildah to override error code with more predictable
280+
// value.
281+
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git remote add`: %s", err.Error())
278282
}
279283

280284
logrus.Debugf("fetching repo %q and branch (or commit ID) %q to %q", gitRepo, gitRef, dir)
@@ -283,14 +287,18 @@ func cloneToDirectory(url, dir string) ([]byte, string, error) {
283287
cmd.Dir = dir
284288
combinedOutput, err = cmd.CombinedOutput()
285289
if err != nil {
286-
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git fetch`: %w", err)
290+
// Return err.Error() instead of err as we want buildah to override error code with more predictable
291+
// value.
292+
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git fetch`: %s", err.Error())
287293
}
288294

289295
cmd = exec.Command("git", "checkout", "FETCH_HEAD")
290296
cmd.Dir = dir
291297
combinedOutput, err = cmd.CombinedOutput()
292298
if err != nil {
293-
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git checkout`: %w", err)
299+
// Return err.Error() instead of err as we want buildah to override error code with more predictable
300+
// value.
301+
return combinedOutput, gitSubdir, fmt.Errorf("failed while performing `git checkout`: %s", err.Error())
294302
}
295303
return combinedOutput, gitSubdir, nil
296304
}

tests/bud.bats

+3-3
Original file line numberDiff line numberDiff line change
@@ -2919,13 +2919,13 @@ function validate_instance_compression {
29192919

29202920
@test "bud-git-context-failure" {
29212921
# We need git to be around to try cloning a repository, even though it'll fail
2922-
# and exit with return code 128.
2922+
# and buildah will exit with return code 125.
29232923
if ! which git ; then
29242924
skip "no git in PATH"
29252925
fi
29262926
target=giturl-image
29272927
gitrepo=git:///tmp/no-such-repository
2928-
run_buildah 128 build $WITH_POLICY_JSON -t ${target} "${gitrepo}"
2928+
run_buildah 125 build $WITH_POLICY_JSON -t ${target} "${gitrepo}"
29292929
# Expect part of what git would have told us... before things went horribly wrong
29302930
expect_output --substring "failed while performing"
29312931
expect_output --substring "git fetch"
@@ -7318,7 +7318,7 @@ _EOF
73187318
FROM scratch
73197319
ADD https://github.com/containers/crun.git#nosuchbranch /src
73207320
_EOF
7321-
run_buildah 128 build -f $contextdir/Dockerfile -t git-image $contextdir
7321+
run_buildah 125 build -f $contextdir/Dockerfile -t git-image $contextdir
73227322
expect_output --substring "couldn't find remote ref nosuchbranch"
73237323
}
73247324

0 commit comments

Comments
 (0)