.template-docker: &template-docker before_script: - apt-get update - apt-get install --no-install-recommends --yes build-essential ca-certificates git golang golang-golang-x-tools make openssh-server shellcheck script: # Gitlab-runner uses umask 0000 (wtf?!) and mixes nobody and root user # when setting up the environment. This breaks ssh's permission check on # authorized_keys. - chown -R root:root /builds - chmod -R go-w /builds # - mkdir /run/sshd - ./ci/run # Windows is not really supported, but at least check building works - PATH=$HOME/go/bin:$PATH make GOOS=windows GOFLAGS= debian-sid: <<: *template-docker image: debian:sid