Skip to content

Commit 5aac957

Browse files
Merge branch 'master' into #82743
2 parents b09d5d5 + d7cdcf6 commit 5aac957

File tree

753 files changed

+32656
-15132
lines changed

Some content is hidden

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

753 files changed

+32656
-15132
lines changed

.ci/teamcity/bootstrap.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/util.sh"
6+
7+
tc_start_block "Bootstrap"
8+
9+
tc_start_block "yarn install and kbn bootstrap"
10+
verify_no_git_changes yarn kbn bootstrap --prefer-offline
11+
tc_end_block "yarn install and kbn bootstrap"
12+
13+
tc_start_block "build kbn-pm"
14+
verify_no_git_changes yarn kbn run build -i @kbn/pm
15+
tc_end_block "build kbn-pm"
16+
17+
tc_start_block "build plugin list docs"
18+
verify_no_git_changes node scripts/build_plugin_list_docs
19+
tc_end_block "build plugin list docs"
20+
21+
tc_end_block "Bootstrap"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
node scripts/build_kibana_platform_plugins --validate-limits
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:checkDocApiChanges

.ci/teamcity/checks/file_casing.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:checkFileCasing

.ci/teamcity/checks/i18n.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:i18nCheck

.ci/teamcity/checks/licenses.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:licenses

.ci/teamcity/checks/telemetry.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:telemetryCheck
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:test_hardening

.ci/teamcity/checks/ts_projects.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:checkTsProjects

.ci/teamcity/checks/type_check.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
source "$(dirname "${0}")/../util.sh"
6+
7+
yarn run grunt run:typeCheck

0 commit comments

Comments
 (0)