diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 16:24:21 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 16:24:21 -0300 |
commit | dbcd163547608f0b15133b11b8e8fe8ddc1d7a53 (patch) | |
tree | fa5889f5b017ae4594c37ab4a84ea85745662a33 | |
parent | e41242688800bcce367a04a0b0ac9f47e243ab96 (diff) | |
download | keyringer-dbcd163547608f0b15133b11b8e8fe8ddc1d7a53.tar.gz keyringer-dbcd163547608f0b15133b11b8e8fe8ddc1d7a53.tar.bz2 |
Fix: CI: test: git config (#10)
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bee6467..303e7a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -71,6 +71,8 @@ test: - git branch develop --track origin/develop || true - git checkout develop - mkdir -p ~/temp/tests/keyringer + - git config --global user.name 'Test' + - git config --global user.email 'test@example.org' - ./keyringer test init ~/temp/tests/keyringer - gpg --with-colons --list-keys | grep uid | awk -F ':' '{ x = $10; gsub(/.*</, "", x); gsub(/>/, "", x); print x, $8; }' >> ~/temp/tests/keyringer/config/recipients/default - ./keyringer test check |