From 0d59192c4ecd0b79781a1076d3c6143716b4b108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sta=C5=84czak?= Date: Fri, 25 Oct 2019 13:20:49 +0200 Subject: [PATCH] Fix cron script --- cron.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cron.sh b/cron.sh index f4c43e9..5c2132b 100755 --- a/cron.sh +++ b/cron.sh @@ -25,10 +25,12 @@ timeout 7200 taskset -c 0 asv run ALL --skip-existing-commits || true # asv run NEW || true # timeout 7200 asv run ALL --steps 10 --skip-existing-commits || true -git add results/$MACHINE +git checkout results +git add "results/$MACHINE" git commit -m "New results from $MACHINE" -git push origin master +git push origin results asv gh-pages --no-push git push -f origin gh-pages +git checkout master