]> git.eshelyaron.com Git - emacs.git/commitdiff
Use libgccjit-10-dev on EMBA
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 22 Mar 2023 17:34:23 +0000 (18:34 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 22 Mar 2023 17:34:23 +0000 (18:34 +0100)
* test/infra/Dockerfile.emba (emacs-native-comp): Use
libgccjit-10-dev.  (Bug#62211)

* test/infra/gitlab-ci.yml (build-native-comp-speed2)
(test-native-comp-speed2): Uncomment jobs.

test/infra/Dockerfile.emba
test/infra/gitlab-ci.yml

index 872591333e6ea656522e04ffdf39108f946c1839..d4d80d3c7511b36f046857e5553bdfec173bd7d7 100644 (file)
@@ -75,9 +75,10 @@ RUN make bootstrap
 
 FROM emacs-base as emacs-native-comp
 
+# The libgccjit version must correspond to the gcc version.
 RUN apt-get update && \
     apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
-      libgccjit-6-dev \
+      libgccjit-10-dev \
     && rm -rf /var/lib/apt/lists/*
 
 FROM emacs-native-comp as emacs-native-comp-speed0
index 4e11b1337b5eb1ee4c04848e96dc3d801a9984f4..41778321773bf20e541eac761684334974a6086a 100644 (file)
@@ -263,23 +263,21 @@ test-filenotify-gio:
 #   variables:
 #     target: emacs-native-comp-speed1
 
-# The next two jobs are commented out due to bug#62211.
-
-# build-native-comp-speed2:
-#   stage: native-comp-images
-#   extends: [.job-template, .build-template, .native-comp-template]
-#   variables:
-#     target: emacs-native-comp-speed2
+build-native-comp-speed2:
+  stage: native-comp-images
+  extends: [.job-template, .build-template, .native-comp-template]
+  variables:
+    target: emacs-native-comp-speed2
 
-test-native-comp-speed2:
-  stage: native-comp
-  extends: [.job-template, .test-template, .native-comp-template]
-  needs:
-    - job: build-native-comp-speed2
-      optional: true
-  variables:
-    target: emacs-native-comp-speed2
-    make_params: "-k -C test check SELECTOR='(not (tag :unstable))'"
+test-native-comp-speed2:
+  stage: native-comp
+  extends: [.job-template, .test-template, .native-comp-template]
+  needs:
+    - job: build-native-comp-speed2
+      optional: true
+  variables:
+    target: emacs-native-comp-speed2
+    make_params: "-k -C test check SELECTOR='(not (tag :unstable))'"
 
 # Local Variables:
 # add-log-current-defun-header-regexp: "^\\([-_.[:alnum:]]+\\)[ \t]*:"