Skip to content

Commit acea4b9

Browse files
Merge branch 'master' into #83617_tsvb
2 parents b263727 + fc9c195 commit acea4b9

File tree

1,920 files changed

+68713
-30596
lines changed

Some content is hidden

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

1,920 files changed

+68713
-30596
lines changed

.ci/build_docker.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ cd "$(dirname "${0}")"
77
cp /usr/local/bin/runbld ./
88
cp /usr/local/bin/bash_standard_lib.sh ./
99

10-
docker build -t kibana-ci -f ./Dockerfile .
10+
if which docker >/dev/null; then
11+
docker build -t kibana-ci -f ./Dockerfile .
12+
else
13+
echo "Docker binary is not available. Skipping the docker build this time."
14+
fi

.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

0 commit comments

Comments
 (0)