ci: Remove unnecessary env vars

This commit is contained in:
Kenny Levinsen 2021-03-16 13:33:35 +01:00
parent 745d662920
commit a9865adb5f
2 changed files with 4 additions and 4 deletions

View file

@ -18,8 +18,8 @@ fi
cnt=0
while [ "$cnt" -lt 2 ]
do
echo "Simpletest run $cnt"
if ! sudo LIBSEAT_BACKEND=builtin LIBSEAT_LOGLEVEL=debug SEATD_SOCK=./seatd.sock ./build/simpletest $file
echo "Simpletest run $((cnt+1))"
if ! sudo LIBSEAT_BACKEND=builtin ./build/simpletest $file
then
echo "Simpletest failed"
exit $res

View file

@ -40,8 +40,8 @@ fi
cnt=0
while [ "$cnt" -lt 2 ]
do
echo "Simpletest run $cnt"
if ! LIBSEAT_LOGLEVEL=debug SEATD_SOCK=./seatd.sock ./build/simpletest $file
echo "Simpletest run $((cnt+1))"
if ! SEATD_SOCK=./seatd.sock ./build/simpletest $file
then
echo "Simpletest failed"
sudo killall seatd