summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-04-18 09:56:17 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-04-18 09:56:19 +0200
commit4db881150213ffa981e11c0dd5b9dae82e0b458e (patch)
tree74a70380be08eebb3190c38a24fcd785f6a2c67e
parent23b420bea3a0b17d66535389a24531a07faa0fea (diff)
Add git config in test env
This somehow got lost when we rebased the srht-builds branch, I guess. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.builds/nixos.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.builds/nixos.yml b/.builds/nixos.yml
index baef33d6..ddf56e85 100644
--- a/.builds/nixos.yml
+++ b/.builds/nixos.yml
@@ -21,6 +21,9 @@ tasks:
- build: |
cd imag
nix-shell ./ci.nix --run "cargo build --all --all-features --tests"
+ - prepare-test: |
+ git config --global user.name "Test user"
+ git config --global user.email "test@user.tld"
- test: |
cd imag
nix-shell ./ci.nix --run "cargo test --all --all-features"