diff options
| author | Andrea Corallo | 2022-12-08 16:40:54 +0100 |
|---|---|---|
| committer | Michael Albinus | 2022-12-09 16:10:08 +0100 |
| commit | fa36b5ddf58d7b0ef47bd908eb49b3ac8964311d (patch) | |
| tree | 58a1456f36d90aa4765eb9f7a55b44edfab1b03c | |
| parent | 6a9e38f22c6dc4ad0c4800338e072f88c00956ec (diff) | |
| download | emacs-fa36b5ddf58d7b0ef47bd908eb49b3ac8964311d.tar.gz emacs-fa36b5ddf58d7b0ef47bd908eb49b3ac8964311d.zip | |
Backport: Enable native speed 2 EMBA build and tests and disable speed 0
* test/infra/gitlab-ci.yml (build-native-comp-speed2): Uncomment.
(build-native-comp-speed0): Comment.
(test-native-comp-speed0): Remove.
(test-native-comp-speed2): Add.
(cherry picked from commit 06bf218f69a62d5d5c8d3b3767d7db8d9fb4bb9f)
| -rw-r--r-- | test/infra/gitlab-ci.yml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index 64b47eb7e47..96fe9e3a1c3 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml | |||
| @@ -246,32 +246,32 @@ test-gnustep: | |||
| 246 | target: emacs-gnustep | 246 | target: emacs-gnustep |
| 247 | make_params: install | 247 | make_params: install |
| 248 | 248 | ||
| 249 | build-native-comp-speed0: | 249 | # build-native-comp-speed0: |
| 250 | stage: native-comp-images | ||
| 251 | extends: [.job-template, .build-template, .native-comp-template] | ||
| 252 | variables: | ||
| 253 | target: emacs-native-comp-speed0 | ||
| 254 | |||
| 255 | # build-native-comp-speed1: | ||
| 256 | # stage: native-comp-images | 250 | # stage: native-comp-images |
| 257 | # extends: [.job-template, .build-template, .native-comp-template] | 251 | # extends: [.job-template, .build-template, .native-comp-template] |
| 258 | # variables: | 252 | # variables: |
| 259 | # target: emacs-native-comp-speed1 | 253 | # target: emacs-native-comp-speed0 |
| 260 | 254 | ||
| 261 | # build-native-comp-speed2: | 255 | # build-native-comp-speed1: |
| 262 | # stage: native-comp-images | 256 | # stage: native-comp-images |
| 263 | # extends: [.job-template, .build-template, .native-comp-template] | 257 | # extends: [.job-template, .build-template, .native-comp-template] |
| 264 | # variables: | 258 | # variables: |
| 265 | # target: emacs-native-comp-speed2 | 259 | # target: emacs-native-comp-speed1 |
| 260 | |||
| 261 | build-native-comp-speed2: | ||
| 262 | stage: native-comp-images | ||
| 263 | extends: [.job-template, .build-template, .native-comp-template] | ||
| 264 | variables: | ||
| 265 | target: emacs-native-comp-speed2 | ||
| 266 | 266 | ||
| 267 | test-native-comp-speed0: | 267 | test-native-comp-speed2: |
| 268 | stage: native-comp | 268 | stage: native-comp |
| 269 | extends: [.job-template, .test-template, .native-comp-template] | 269 | extends: [.job-template, .test-template, .native-comp-template] |
| 270 | needs: | 270 | needs: |
| 271 | - job: build-native-comp-speed0 | 271 | - job: build-native-comp-speed2 |
| 272 | optional: true | 272 | optional: true |
| 273 | variables: | 273 | variables: |
| 274 | target: emacs-native-comp-speed0 | 274 | target: emacs-native-comp-speed2 |
| 275 | make_params: "-k -C test check SELECTOR='(not (tag :unstable))'" | 275 | make_params: "-k -C test check SELECTOR='(not (tag :unstable))'" |
| 276 | 276 | ||
| 277 | # Local Variables: | 277 | # Local Variables: |