diff options
author | Chris Evich <cevich@redhat.com> | 2022-03-01 15:34:35 -0500 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2022-04-21 16:23:36 -0400 |
commit | 566b6071d42984fc401cfb297900d7b1498e11c7 (patch) | |
tree | 821dcdffa23fca2c18d2aafb67d99104b15c653a /contrib/cirrus/setup_environment.sh | |
parent | cb09c26c6519c2fff8be7285d585672a9066f2da (diff) | |
download | podman-566b6071d42984fc401cfb297900d7b1498e11c7.tar.gz podman-566b6071d42984fc401cfb297900d7b1498e11c7.tar.bz2 podman-566b6071d42984fc401cfb297900d7b1498e11c7.zip |
Cirrus: Fix missing git-enforced runtime identity
Newer versions of git (like `2.35`) fail on certain operations (like
`rebase` and `am`) without a local identity. Add a fake one from the
start, with a clearly identifiable test-value to avoid problems at
runtime.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/cirrus/setup_environment.sh')
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 906a898b2..a7d0f7fa1 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -41,6 +41,11 @@ cp hack/podman-registry /bin # Make sure cni network plugins directory exists mkdir -p /etc/cni/net.d +# Some test operations & checks require a git "identity" +_gc='git config --file /root/.gitconfig' +$_gc user.email "TMcTestFace@example.com" +$_gc user.name "Testy McTestface" + # Ensure that all lower-level contexts and child-processes have # ready access to higher level orchestration (e.g Cirrus-CI) # variables. |