Skip to content

Commit 31f1e37

Browse files
committed
Merge remote-tracking branch 'origin/master' into lens/fix-transition
2 parents a00e916 + 1ff4256 commit 31f1e37

File tree

506 files changed

+9740
-7717
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

506 files changed

+9740
-7717
lines changed

.ci/es-snapshots/Jenkinsfile_verify_es

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ kibanaPipeline(timeoutMinutes: 150) {
2929
withEnv(["ES_SNAPSHOT_MANIFEST=${SNAPSHOT_MANIFEST}"]) {
3030
parallel([
3131
'kibana-intake-agent': workers.intake('kibana-intake', './test/scripts/jenkins_unit.sh'),
32-
'x-pack-intake-agent': workers.intake('x-pack-intake', './test/scripts/jenkins_xpack.sh'),
3332
'kibana-oss-agent': workers.functional('kibana-oss-tests', { kibanaPipeline.buildOss() }, [
3433
'oss-ciGroup1': kibanaPipeline.ossCiGroupProcess(1),
3534
'oss-ciGroup2': kibanaPipeline.ossCiGroupProcess(2),

.ci/jobs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
JOB:
44
- kibana-intake
5-
- x-pack-intake
65
- kibana-firefoxSmoke
76
- kibana-ciGroup1
87
- kibana-ciGroup2

.ci/teamcity/default/jest.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
#!/bin/bash
22

3-
set -euo pipefail
4-
5-
source "$(dirname "${0}")/../util.sh"
6-
7-
export JOB=kibana-default-jest
8-
9-
checks-reporter-with-killswitch "Jest Unit Tests" \
10-
node scripts/jest x-pack --ci --verbose --maxWorkers=5
3+
# This file is temporary and can be removed once #85850 has been
4+
# merged and the changes included in open PR's (~3 days after merging)

.ci/teamcity/oss/jest.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
22

3+
# This file is temporary and can be removed once #85850 has been
4+
# merged and the changes included in open PR's (~3 days after merging)
5+
36
set -euo pipefail
47

58
source "$(dirname "${0}")/../util.sh"
69

710
export JOB=kibana-oss-jest
811

9-
checks-reporter-with-killswitch "OSS Jest Unit Tests" \
10-
node scripts/jest --config jest.config.oss.js --ci --verbose --maxWorkers=5
12+
checks-reporter-with-killswitch "Jest Unit Tests" \
13+
node scripts/jest --ci --verbose

.ci/teamcity/tests/jest.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
export JOB=kibana-jest
8+
9+
checks-reporter-with-killswitch "Jest Unit Tests" \
10+
node scripts/jest --ci --verbose --coverage

.ci/teamcity/tests/test_projects.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
source "$(dirname "${0}")/../util.sh"
66

77
checks-reporter-with-killswitch "Test Projects" \
8-
yarn kbn run test --exclude kibana --oss --skip-kibana-plugins
8+
yarn kbn run test --exclude kibana --oss --skip-kibana-plugins --skip-missing

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
/src/plugins/advanced_settings/ @elastic/kibana-app
1414
/src/plugins/charts/ @elastic/kibana-app
1515
/src/plugins/discover/ @elastic/kibana-app
16-
/src/plugins/lens_oss/ @elastic/kibana-app
1716
/src/plugins/management/ @elastic/kibana-app
1817
/src/plugins/kibana_legacy/ @elastic/kibana-app
1918
/src/plugins/timelion/ @elastic/kibana-app
@@ -127,7 +126,6 @@
127126
/x-pack/test/functional/es_archives/maps/ @elastic/kibana-gis
128127
/x-pack/test/visual_regression/tests/maps/index.js @elastic/kibana-gis
129128
#CC# /src/plugins/maps_legacy/ @elastic/kibana-gis
130-
#CC# /src/plugins/maps_oss/ @elastic/kibana-gis
131129
#CC# /x-pack/plugins/file_upload @elastic/kibana-gis
132130
#CC# /x-pack/plugins/maps_legacy_licensing @elastic/kibana-gis
133131
/src/plugins/tile_map/ @elastic/kibana-gis

.i18nrc.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
"visTypeVislib": "src/plugins/vis_type_vislib",
6262
"visTypeXy": "src/plugins/vis_type_xy",
6363
"visualizations": "src/plugins/visualizations",
64-
"lensOss": "src/plugins/lens_oss",
65-
"mapsOss": "src/plugins/maps_oss",
6664
"visualize": "src/plugins/visualize",
6765
"apmOss": "src/plugins/apm_oss",
6866
"usageCollection": "src/plugins/usage_collection"

.teamcity/src/Extensions.kt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,21 @@ fun BuildType.kibanaAgent(size: Int) {
2020
}
2121

2222
val testArtifactRules = """
23+
target/junit/**/*
2324
target/kibana-*
24-
target/test-metrics/*
25+
target/kibana-coverage/**/*
2526
target/kibana-security-solution/**/*.png
26-
target/junit/**/*
27+
target/test-metrics/*
2728
target/test-suites-ci-plan.json
28-
test/**/screenshots/session/*.png
29-
test/**/screenshots/failure/*.png
3029
test/**/screenshots/diff/*.png
30+
test/**/screenshots/failure/*.png
31+
test/**/screenshots/session/*.png
3132
test/functional/failure_debug/html/*.html
32-
x-pack/test/**/screenshots/session/*.png
33-
x-pack/test/**/screenshots/failure/*.png
3433
x-pack/test/**/screenshots/diff/*.png
35-
x-pack/test/functional/failure_debug/html/*.html
34+
x-pack/test/**/screenshots/failure/*.png
35+
x-pack/test/**/screenshots/session/*.png
3636
x-pack/test/functional/apps/reporting/reports/session/*.pdf
37+
x-pack/test/functional/failure_debug/html/*.html
3738
""".trimIndent()
3839

3940
fun BuildType.addTestSettings() {

.teamcity/src/builds/test/AllTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ object AllTests : BuildType({
99
description = "All Non-Functional Tests"
1010
type = Type.COMPOSITE
1111

12-
dependsOn(QuickTests, Jest, XPackJest, JestIntegration, OssApiServerIntegration)
12+
dependsOn(QuickTests, Jest, JestIntegration, OssApiServerIntegration)
1313
})

0 commit comments

Comments
 (0)