diff options
-rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b7c111..19583ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,22 +2,24 @@ variables: - GIT_SUBMODULE_STRATEGY: recursive - TERM: dumb + 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 +image: registry.gentoo.org/emacs/container-emacs/debian-unstable:latest install: stage: install timeout: 10 minutes + rules: + - changes: + - "*.el" + - .gitlab-ci.yml + - Makefile + script: - make install |