diff options
| author | Michael Albinus | 2022-12-06 12:36:15 +0100 |
|---|---|---|
| committer | Michael Albinus | 2022-12-06 12:36:15 +0100 |
| commit | d58d1dd48ac7ae0f0b1a7d129c8a27b4a016d1ca (patch) | |
| tree | 4b779a07b11f656f6f1296b8570640f3c9239e3f | |
| parent | 9b9b39a2d8979af7430a4e2370ef7857c4a2dbce (diff) | |
| download | emacs-d58d1dd48ac7ae0f0b1a7d129c8a27b4a016d1ca.tar.gz emacs-d58d1dd48ac7ae0f0b1a7d129c8a27b4a016d1ca.zip | |
Do not run slow tests on EMBA
* test/infra/gitlab-ci.yml (.filenotify-gio-template): Do not run
scheduled.
(build-native-comp-speed1, build-native-comp-speed2): Comment out.
* test/lisp/international/ucs-normalize-tests.el
(ucs-normalize-part1): Skip also on EMBA.
| -rw-r--r-- | test/infra/gitlab-ci.yml | 22 | ||||
| -rw-r--r-- | test/lisp/international/ucs-normalize-tests.el | 3 |
2 files changed, 13 insertions, 12 deletions
diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index e034430edce..64b47eb7e47 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml | |||
| @@ -155,7 +155,7 @@ default: | |||
| 155 | .filenotify-gio-template: | 155 | .filenotify-gio-template: |
| 156 | rules: | 156 | rules: |
| 157 | - if: '$CI_PIPELINE_SOURCE == "web"' | 157 | - if: '$CI_PIPELINE_SOURCE == "web"' |
| 158 | - if: '$CI_PIPELINE_SOURCE == "schedule"' | 158 | # - if: '$CI_PIPELINE_SOURCE == "schedule"' |
| 159 | changes: | 159 | changes: |
| 160 | - "**.in" | 160 | - "**.in" |
| 161 | - lisp/autorevert.el | 161 | - lisp/autorevert.el |
| @@ -252,17 +252,17 @@ build-native-comp-speed0: | |||
| 252 | variables: | 252 | variables: |
| 253 | target: emacs-native-comp-speed0 | 253 | target: emacs-native-comp-speed0 |
| 254 | 254 | ||
| 255 | build-native-comp-speed1: | 255 | # build-native-comp-speed1: |
| 256 | stage: native-comp-images | 256 | # stage: native-comp-images |
| 257 | extends: [.job-template, .build-template, .native-comp-template] | 257 | # extends: [.job-template, .build-template, .native-comp-template] |
| 258 | variables: | 258 | # variables: |
| 259 | target: emacs-native-comp-speed1 | 259 | # target: emacs-native-comp-speed1 |
| 260 | 260 | ||
| 261 | build-native-comp-speed2: | 261 | # build-native-comp-speed2: |
| 262 | stage: native-comp-images | 262 | # stage: native-comp-images |
| 263 | extends: [.job-template, .build-template, .native-comp-template] | 263 | # extends: [.job-template, .build-template, .native-comp-template] |
| 264 | variables: | 264 | # variables: |
| 265 | target: emacs-native-comp-speed2 | 265 | # target: emacs-native-comp-speed2 |
| 266 | 266 | ||
| 267 | test-native-comp-speed0: | 267 | test-native-comp-speed0: |
| 268 | stage: native-comp | 268 | stage: native-comp |
diff --git a/test/lisp/international/ucs-normalize-tests.el b/test/lisp/international/ucs-normalize-tests.el index 8d7ac5eb8b1..380140308aa 100644 --- a/test/lisp/international/ucs-normalize-tests.el +++ b/test/lisp/international/ucs-normalize-tests.el | |||
| @@ -255,7 +255,8 @@ Must be called with `ucs-normalize-tests--norm-buf' as current buffer." | |||
| 255 | 255 | ||
| 256 | (ert-deftest ucs-normalize-part1 () | 256 | (ert-deftest ucs-normalize-part1 () |
| 257 | :tags '(:expensive-test) | 257 | :tags '(:expensive-test) |
| 258 | (skip-unless (not (getenv "EMACS_HYDRA_CI"))) ; SLOW ~ 1800s | 258 | (skip-unless (not (or (getenv "EMACS_HYDRA_CI") |
| 259 | (getenv "EMACS_EMBA_CI")))) ; SLOW ~ 1800s | ||
| 259 | ;; This takes a long time, so make sure we're compiled. | 260 | ;; This takes a long time, so make sure we're compiled. |
| 260 | (dolist (fun '(ucs-normalize-tests--part1-rule2 | 261 | (dolist (fun '(ucs-normalize-tests--part1-rule2 |
| 261 | ucs-normalize-tests--rule1-failing-for-partX | 262 | ucs-normalize-tests--rule1-failing-for-partX |