]> git.eshelyaron.com Git - emacs.git/commitdiff
.gitlab-ci.yml: unsplit stages
authorTed Zlatanov <tzz@lifelogs.com>
Mon, 31 Dec 2018 15:05:25 +0000 (10:05 -0500)
committerTed Zlatanov <tzz@lifelogs.com>
Mon, 31 Dec 2018 15:05:25 +0000 (10:05 -0500)
.gitlab-ci.yml

index eb156ec3e9d76d851c6546c583ea6cb4f149ba95..4edc05e88a52a56ffd4eeff0544ae325a6163be0 100644 (file)
@@ -31,29 +31,12 @@ before_script:
   - DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y -qq -o=Dpkg::Use-Pty=0 libc-dev gcc make autoconf automake libncurses-dev gnutls-dev git
 
 stages:
-  - compile
   - test
 
-compile:
-  stage: compile
+test:
+  stage: test
   script:
     - ./autogen.sh autoconf
     - ./configure --without-makeinfo
     - make bootstrap
-  artifacts:
-    when: always
-    name: "compile-$CI_COMMIT_REF_NAME-$CI_JOB_STAGE-$CI_JOB_NAME"
-    paths:
-      - doc/
-      - lib-src/
-      - lib/
-      - lisp/
-      - src/
-      - test/
-
-test:
-  stage: test
-  dependencies:
-    - compile
-  script:
     - make check