Skip to content

Commit c26b86e

Browse files
authored
Verify stack boot up for 8.x and 8.0.0 (#643)
1 parent 68ee453 commit c26b86e

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.ci/Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ pipeline {
9393
def basicTasks = [
9494
'stack-command-default': generateTestCommandStage(command: 'test-stack-command-default', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
9595
'stack-command-7x': generateTestCommandStage(command: 'test-stack-command-7x', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
96+
'stack-command-800': generateTestCommandStage(command: 'test-stack-command-800', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
9697
'stack-command-8x': generateTestCommandStage(command: 'test-stack-command-8x', artifacts: ['build/elastic-stack-dump/stack/*/logs/*.log', 'build/elastic-stack-dump/stack/*/logs/fleet-server-internal/*']),
9798
'check-packages-with-kind': generateTestCommandStage(command: 'test-check-packages-with-kind', artifacts: ['build/test-results/*.xml', 'build/kubectl-dump.txt', 'build/elastic-stack-dump/check-*/logs/*.log', 'build/elastic-stack-dump/check-*/logs/fleet-server-internal/*'], junitArtifacts: true, publishCoverage: true),
9899
'check-packages-other': generateTestCommandStage(command: 'test-check-packages-other', artifacts: ['build/test-results/*.xml', 'build/elastic-stack-dump/check-*/logs/*.log', 'build/elastic-stack-dump/check-*/logs/fleet-server-internal/*'], junitArtifacts: true, publishCoverage: true),
@@ -160,7 +161,7 @@ def generateTestCheckSinglePackageStage(Map args = [:]) {
160161
withMageEnv(){
161162
withCloudTestEnv() {
162163
sh(label: 'Build elastic-package',script: "make build")
163-
sh(label: 'Build elastic-package',script: "make PACKAGE_UNDER_TEST=${it} test-check-packages-with-parallel")
164+
sh(label: 'Build elastic-package',script: "make PACKAGE_UNDER_TEST=${it} test-check-packages-parallel")
164165
}
165166
}
166167
}

Makefile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,25 @@ test-stack-command-default:
4646
./scripts/test-stack-command.sh
4747

4848
test-stack-command-7x:
49-
./scripts/test-stack-command.sh 7.16.0-SNAPSHOT
49+
./scripts/test-stack-command.sh 7.16.3-SNAPSHOT
5050

51-
test-stack-command-8x:
51+
test-stack-command-800:
5252
./scripts/test-stack-command.sh 8.0.0-SNAPSHOT
5353

54-
test-stack-command: test-stack-command-default test-stack-command-7x test-stack-command-8x
54+
test-stack-command-8x:
55+
./scripts/test-stack-command.sh 8.1.0-SNAPSHOT
56+
57+
test-stack-command: test-stack-command-default test-stack-command-7x test-stack-command-800 test-stack-command-8x
5558

56-
test-check-packages: test-check-packages-with-kind test-check-packages-with-other test-check-packages-with-parallel
59+
test-check-packages: test-check-packages-with-kind test-check-packages-other test-check-packages-parallel
5760

5861
test-check-packages-with-kind:
5962
PACKAGE_TEST_TYPE=with-kind ./scripts/test-check-packages.sh
6063

6164
test-check-packages-other:
6265
PACKAGE_TEST_TYPE=other ./scripts/test-check-packages.sh
6366

64-
test-check-packages-with-parallel:
67+
test-check-packages-parallel:
6568
PACKAGE_TEST_TYPE=parallel ./scripts/test-check-packages.sh
6669

6770
test-build-zip:

internal/install/stack_version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ package install
66

77
const (
88
// DefaultStackVersion is the default version of the stack
9-
DefaultStackVersion = "7.16.0"
9+
DefaultStackVersion = "7.16.2"
1010
)

0 commit comments

Comments
 (0)