-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'elastic/master' into monitoring/skip_cl…
…oud_test
- Loading branch information
Showing
927 changed files
with
14,552 additions
and
10,656 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
JOB: | ||
- kibana-intake | ||
- x-pack-intake | ||
- kibana-firefoxSmoke | ||
- kibana-ciGroup1 | ||
- kibana-ciGroup2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
source "$(dirname "${0}")/../util.sh" | ||
|
||
export JOB=kibana-default-jest | ||
|
||
checks-reporter-with-killswitch "Jest Unit Tests" \ | ||
node scripts/jest x-pack --ci --verbose --maxWorkers=5 | ||
# This file is temporary and can be removed once #85850 has been | ||
# merged and the changes included in open PR's (~3 days after merging) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# This file is temporary and can be removed once #85850 has been | ||
# merged and the changes included in open PR's (~3 days after merging) | ||
|
||
set -euo pipefail | ||
|
||
source "$(dirname "${0}")/../util.sh" | ||
|
||
export JOB=kibana-oss-jest | ||
|
||
checks-reporter-with-killswitch "OSS Jest Unit Tests" \ | ||
node scripts/jest --config jest.config.oss.js --ci --verbose --maxWorkers=5 | ||
checks-reporter-with-killswitch "Jest Unit Tests" \ | ||
node scripts/jest --ci --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
source "$(dirname "${0}")/../util.sh" | ||
|
||
export JOB=kibana-jest | ||
|
||
checks-reporter-with-killswitch "Jest Unit Tests" \ | ||
node scripts/jest --ci --verbose --coverage |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package builds | ||
|
||
import addSlackNotifications | ||
import areTriggersEnabled | ||
import dependsOn | ||
import getProjectBranch | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.FailureAction | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.schedule | ||
|
||
object DailyCi : BuildType({ | ||
id("Daily_CI") | ||
name = "Daily CI" | ||
description = "Runs everything in CI, daily" | ||
type = Type.COMPOSITE | ||
paused = !areTriggersEnabled() | ||
|
||
triggers { | ||
schedule { | ||
schedulingPolicy = cron { | ||
hours = "0" | ||
minutes = "0" | ||
} | ||
branchFilter = "refs/heads/${getProjectBranch()}" | ||
triggerBuild = always() | ||
withPendingChangesOnly = false | ||
} | ||
} | ||
|
||
dependsOn( | ||
FullCi | ||
) { | ||
onDependencyCancel = FailureAction.ADD_PROBLEM | ||
} | ||
|
||
addSlackNotifications() | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package builds | ||
|
||
import addSlackNotifications | ||
import areTriggersEnabled | ||
import dependsOn | ||
import getProjectBranch | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.FailureAction | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs | ||
|
||
object OnMergeCi : BuildType({ | ||
id("OnMerge_CI") | ||
name = "On Merge CI" | ||
description = "Runs everything in CI, on each commit" | ||
type = Type.COMPOSITE | ||
paused = !areTriggersEnabled() | ||
|
||
maxRunningBuilds = 1 | ||
|
||
triggers { | ||
vcs { | ||
perCheckinTriggering = false | ||
branchFilter = "refs/heads/${getProjectBranch()}" | ||
} | ||
} | ||
|
||
dependsOn( | ||
FullCi | ||
) { | ||
onDependencyCancel = FailureAction.ADD_PROBLEM | ||
} | ||
|
||
addSlackNotifications() | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.