diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75685900396d4bef23915dab7ac07c04941bdfe3..f6dc35946f9b795a98e5d32a97734f3bcf21e4b7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,16 @@ default: - rm -rf gluon/openwrt/dl && mkdir -p gluon/openwrt && ln -s ../../ffs-openwrt-dl-cache gluon/openwrt/dl - rm -rf gluon/openwrt/staging_dir && mkdir -p staging_dir && ln -s ../../staging_dir gluon/openwrt/staging_dir after_script: - - cd gluon/openwrt/dl && git add . && git commit -m "update DL cache" && git push || true + # we need to start the SSH agent again because it doesn't seem to stay running + - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + - eval $(ssh-agent -s) + - ssh-add <(echo "$GIT_SSH_PRIV_KEY") + - git config --global user.email "firmware@freifunk-stuttgart.de" + - git config --global user.name "FFS Buildbot" + - mkdir -p ~/.ssh + - cat gitlab-known-hosts >> ~/.ssh/known_hosts + - cd gluon/openwrt/dl && git add . && git commit -m "update DL cache" || true + - git push || true generate_date: stage: generate_date