Skip to content

Commit

Permalink
Do not run slow tests on EMBA
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
albinus committed Dec 6, 2022
1 parent 9b9b39a commit d58d1dd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
22 changes: 11 additions & 11 deletions test/infra/gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ default:
.filenotify-gio-template:
rules:
- if: '$CI_PIPELINE_SOURCE == "web"'
- if: '$CI_PIPELINE_SOURCE == "schedule"'
# - if: '$CI_PIPELINE_SOURCE == "schedule"'
changes:
- "**.in"
- lisp/autorevert.el
Expand Down Expand Up @@ -252,17 +252,17 @@ build-native-comp-speed0:
variables:
target: emacs-native-comp-speed0

build-native-comp-speed1:
stage: native-comp-images
extends: [.job-template, .build-template, .native-comp-template]
variables:
target: emacs-native-comp-speed1
# build-native-comp-speed1:
# stage: native-comp-images
# extends: [.job-template, .build-template, .native-comp-template]
# variables:
# target: emacs-native-comp-speed1

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-speed0:
stage: native-comp
Expand Down
3 changes: 2 additions & 1 deletion test/lisp/international/ucs-normalize-tests.el
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ Must be called with `ucs-normalize-tests--norm-buf' as current buffer."

(ert-deftest ucs-normalize-part1 ()
:tags '(:expensive-test)
(skip-unless (not (getenv "EMACS_HYDRA_CI"))) ; SLOW ~ 1800s
(skip-unless (not (or (getenv "EMACS_HYDRA_CI")
(getenv "EMACS_EMBA_CI")))) ; SLOW ~ 1800s
;; This takes a long time, so make sure we're compiled.
(dolist (fun '(ucs-normalize-tests--part1-rule2
ucs-normalize-tests--rule1-failing-for-partX
Expand Down

0 comments on commit d58d1dd

Please sign in to comment.