RUN ./configure
# 'make -j4 bootstrap' does not work reliably.
RUN make bootstrap
-RUN make -j4
FROM emacs-base as emacs-filenotify-gio
RUN ./autogen.sh autoconf
RUN ./configure --with-file-notification=gfile
RUN make bootstrap
-RUN make -j4
FROM emacs-base as emacs-gnustep
RUN ./autogen.sh autoconf
RUN ./configure --with-ns
RUN make bootstrap
-RUN make -j4
FROM emacs-base as emacs-native-comp-speed0
RUN ./configure --with-native-compilation
RUN make bootstrap -j2 \
NATIVE_FULL_AOT=1 BYTE_COMPILE_EXTRA_FLAGS='--eval "(setq comp-speed 0)"'
-RUN make -j4
- if: '$CI_JOB_STAGE =~ "fast|normal" && $CI_PIPELINE_SOURCE == "schedule"'
when: never
- when: always
+ allow_failure: true
artifacts:
name: ${test_name}
public: true
timeout: 8 hours
stages:
-# - prep-images
- build-images
# - fast
- normal
- native-comp
- slow
-# prep-image-base:
-# stage: prep-images
-# extends: [.job-template, .build-template]
-# variables:
-# target: emacs-base
-
build-image-inotify:
stage: build-images
extends: [.job-template, .build-template]
-# needs: [prep-image-base]
variables:
target: emacs-inotify
build-image-filenotify-gio:
stage: platform-images
extends: [.job-template, .build-template, .filenotify-gio-template]
-# needs: [prep-image-base]
variables:
target: emacs-filenotify-gio
build-image-gnustep:
stage: platform-images
extends: [.job-template, .build-template, .gnustep-template]
-# needs: [prep-image-base]
variables:
target: emacs-gnustep
build-native-bootstrap-speed0:
stage: native-comp-images
extends: [.job-template, .build-template, .native-comp-template]
-# needs: [prep-image-base]
variables:
target: emacs-native-comp-speed0
test-all-inotify:
# This tests also file monitor libraries inotify and inotifywatch.
stage: slow
+ needs: [build-image-inotify]
extends: [.job-template, .test-template]
rules:
# note there's no "changes" section, so this always runs on a schedule