-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into import-export-doc
- Loading branch information
Showing
4,265 changed files
with
178,692 additions
and
143,800 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,62 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
branch="$1" | ||
checkoutDir="$(pwd)" | ||
|
||
if [[ "$branch" != "master" ]]; then | ||
checkoutDir="/tmp/kibana-$branch" | ||
git clone https://github.com/elastic/kibana.git --branch "$branch" --depth 1 "$checkoutDir" | ||
cd "$checkoutDir" | ||
fi | ||
|
||
source src/dev/ci_setup/setup.sh; | ||
|
||
# download es snapshots | ||
node scripts/es snapshot --download-only; | ||
node scripts/es snapshot --license=oss --download-only; | ||
|
||
# download reporting browsers | ||
(cd "x-pack" && yarn gulp prepare); | ||
|
||
# cache the chromedriver archive | ||
chromedriverDistVersion="$(node -e "console.log(require('chromedriver').version)")" | ||
chromedriverPkgVersion="$(node -e "console.log(require('./package.json').devDependencies.chromedriver)")" | ||
if [ -z "$chromedriverDistVersion" ] || [ -z "$chromedriverPkgVersion" ]; then | ||
echo "UNABLE TO DETERMINE CHROMEDRIVER VERSIONS" | ||
exit 1 | ||
fi | ||
mkdir -p .chromedriver | ||
curl "https://chromedriver.storage.googleapis.com/$chromedriverDistVersion/chromedriver_linux64.zip" > .chromedriver/chromedriver.zip | ||
echo "$chromedriverPkgVersion" > .chromedriver/pkgVersion | ||
|
||
# cache the geckodriver archive | ||
geckodriverPkgVersion="$(node -e "console.log(require('./package.json').devDependencies.geckodriver)")" | ||
if [ -z "$geckodriverPkgVersion" ]; then | ||
echo "UNABLE TO DETERMINE geckodriver VERSIONS" | ||
exit 1 | ||
fi | ||
mkdir -p ".geckodriver" | ||
cp "node_modules/geckodriver/geckodriver.tar.gz" .geckodriver/geckodriver.tar.gz | ||
echo "$geckodriverPkgVersion" > .geckodriver/pkgVersion | ||
|
||
echo "Creating bootstrap_cache archive" | ||
|
||
# archive cacheable directories | ||
mkdir -p "$HOME/.kibana/bootstrap_cache" | ||
tar -cf "$HOME/.kibana/bootstrap_cache/$branch.tar" \ | ||
x-pack/plugins/reporting/.chromium \ | ||
.es \ | ||
.chromedriver \ | ||
.geckodriver; | ||
|
||
echo "Adding node_modules" | ||
# Find all of the node_modules directories that aren't test fixtures, and aren't inside other node_modules directories, and append them to the tar | ||
find . -type d -name node_modules -not -path '*__fixtures__*' -prune -print0 | xargs -0I % tar -rf "$HOME/.kibana/bootstrap_cache/$branch.tar" "%" | ||
|
||
echo "created $HOME/.kibana/bootstrap_cache/$branch.tar" | ||
|
||
if [[ "$branch" != "master" ]]; then | ||
rm --preserve-root -rf "$checkoutDir" | ||
fi |
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,8 @@ | ||
# Kibana Jenkins Pipeline Library | ||
|
||
## Running tests | ||
|
||
```bash | ||
cd .ci/pipeline-library | ||
./gradlew test | ||
``` |
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,46 @@ | ||
plugins { | ||
id 'groovy' | ||
id 'idea' | ||
} | ||
|
||
group = 'co.elastic.kibana.pipeline' | ||
version = '0.0.1' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
repositories { | ||
maven { url 'https://repo.jenkins-ci.org/releases/' } | ||
maven { url 'https://repo.maven.apache.org/maven2' } | ||
} | ||
|
||
dependencies { | ||
implementation 'org.codehaus.groovy:groovy-all:2.4.12' | ||
implementation 'org.jenkins-ci.main:jenkins-core:2.23' | ||
implementation 'org.jenkins-ci.plugins.workflow:workflow-step-api:2.19@jar' | ||
testImplementation 'com.lesfurets:jenkins-pipeline-unit:1.4' | ||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'org.mockito:mockito-core:2.+' | ||
testImplementation 'org.assertj:assertj-core:3.15+' // Temporary https://github.com/jenkinsci/JenkinsPipelineUnit/issues/209 | ||
} | ||
|
||
sourceSets { | ||
main { | ||
groovy { | ||
srcDirs = ['vars'] | ||
} | ||
} | ||
|
||
test { | ||
groovy { | ||
srcDirs = ['src/test'] | ||
} | ||
} | ||
} | ||
|
||
test { | ||
testLogging { | ||
events 'passed', 'skipped', 'failed' | ||
exceptionFormat = 'full' | ||
} | ||
} |
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
.ci/pipeline-library/gradle/wrapper/gradle-wrapper.properties
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,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.