diff options
-rw-r--r-- | .gitlab-ci.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9b7c111 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +--- + + +variables: + GIT_SUBMODULE_STRATEGY: recursive + TERM: dumb + +stages: + - install + +image: debian:unstable + +before_script: + - apt update && apt install -y emacs-nox make + - mkdir -p ~/.emacs.d + + +install: + stage: install + timeout: 10 minutes + + script: + - make install |