Skip to content

Commit 96385c7

Browse files
authored
adapt to new branching and release strategy (#63)
Other than the current 7. release, for 8.x there will now be two simultaneous releases we need to test against. Let's call them "8.current" and "8.previous". For snapshots we'll also test against "main", "8.next", and "8.future". The labels are: - `main`: main branch - `8.future`: the future 8.x release, i.e. current version of the 8.x branch - `8.next`: the short lived period between a minor's FF - when the new branch is cut from 8.x - and GA - `8.current`: the most recent 8.x release - `8.previous`: the previous, but still supported, 8.x release
1 parent a7d4f31 commit 96385c7

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

travis/matrix.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,26 @@ stages:
1515

1616
env:
1717
jobs:
18-
- ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk21.env
19-
- ELASTIC_STACK_VERSION=7.x
20-
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk21.env
21-
- SNAPSHOT=true ELASTIC_STACK_VERSION=7.x
18+
- ELASTIC_STACK_VERSION=8.previous DOCKER_ENV=dockerjdk21.env
19+
- ELASTIC_STACK_VERSION=8.current DOCKER_ENV=dockerjdk21.env
20+
- ELASTIC_STACK_VERSION=7.current
21+
- SNAPSHOT=true ELASTIC_STACK_VERSION=main DOCKER_ENV=dockerjdk21.env
22+
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.future DOCKER_ENV=dockerjdk21.env
23+
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.next DOCKER_ENV=dockerjdk21.env
24+
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.current DOCKER_ENV=dockerjdk21.env
25+
- SNAPSHOT=true ELASTIC_STACK_VERSION=8.previous DOCKER_ENV=dockerjdk21.env
26+
- SNAPSHOT=true ELASTIC_STACK_VERSION=7.current
2227

2328
jobs:
2429
- stage: Performance
2530
name: Performance Base-Line
2631
<<: *_performance
27-
env: ELASTIC_STACK_VERSION=7.x
32+
env: ELASTIC_STACK_VERSION=7.current
2833
- <<: *_performance
29-
env: ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk21.env
34+
env: ELASTIC_STACK_VERSION=8.current DOCKER_ENV=dockerjdk21.env
3035
- <<: *_performance
31-
env: SNAPSHOT=true ELASTIC_STACK_VERSION=8.x DOCKER_ENV=dockerjdk21.env
36+
env: ELASTIC_STACK_VERSION=8.previous DOCKER_ENV=dockerjdk21.env
37+
- <<: *_performance
38+
env: SNAPSHOT=true ELASTIC_STACK_VERSION=8.future DOCKER_ENV=dockerjdk21.env
39+
- <<: *_performance
40+
env: SNAPSHOT=true ELASTIC_STACK_VERSION=main DOCKER_ENV=dockerjdk21.env

0 commit comments

Comments
 (0)