diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-06 21:16:43 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-07 09:26:09 +0000 |
commit | e4b5bd990b5a4b658f0e38451f0a910d4515a968 (patch) | |
tree | 8b8379301f1348f6edca7fca7859abce980a1693 | |
parent | dc89f3a0df1013c7c5fcb3cff6da27fa0263f007 (diff) | |
download | emacs-e4b5bd990b5a4b658f0e38451f0a910d4515a968.tar.gz emacs-e4b5bd990b5a4b658f0e38451f0a910d4515a968.tar.bz2 emacs-e4b5bd990b5a4b658f0e38451f0a910d4515a968.zip |
* Add test-native-bootstrap as CI test
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9a62137c168..7b31810fd33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -65,3 +65,14 @@ test-filenotify-gio: - ./configure --without-makeinfo --with-file-notification=gfile - make bootstrap - make -C test autorevert-tests filenotify-tests + +test-native-bootstrap: + # Test native bootstrap + stage: test + only: + - schedules + script: + - DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y -qq -o=Dpkg::Use-Pty=0 libgccjit-6-dev + - ./autogen.sh autoconf + - ./configure --without-makeinfo --with-nativecomp + - make bootstrap |