branch: externals/system-packages
commit 23e127ef005325f161e18c497a650efce1012039
Author: Alex Branham <bran...@utexas.edu>
Commit: Alex Branham <bran...@utexas.edu>

    Modify gitlab CI to test multiple Emacs versions
---
 .gitlab-ci.yml | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2152e52..4df87dc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,26 @@
-image: silex/emacs:dev
+
 
 before_script:
   - emacs --version
 
 
-test:
+emacs24:
+  image: silex/emacs:24.3-dev
+  script:
+    - make compile
+    - make test
+
+emacs25:
+  image: silex/emacs:25.3-dev
+  script:
+    - make compile
+    - make test
+
+emacs26:
+  image: silex/emacs:26.1-dev
   script:
     - make compile
     - make test
 
+    
+

Reply via email to