move esvm directories to tmp dir
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,7 +7,6 @@ test/integration/yaml_suite/log
|
|||||||
.aws-config.json
|
.aws-config.json
|
||||||
.idea
|
.idea
|
||||||
esvm
|
esvm
|
||||||
.es-snapshot-repos
|
|
||||||
/tmp
|
/tmp
|
||||||
|
|
||||||
## generated files
|
## generated files
|
||||||
|
|||||||
@ -7,7 +7,6 @@ test/integration/yaml_suite/log
|
|||||||
.aws-config.json
|
.aws-config.json
|
||||||
.idea
|
.idea
|
||||||
esvm
|
esvm
|
||||||
.es-snapshot-repos
|
|
||||||
/tmp
|
/tmp
|
||||||
|
|
||||||
## generated files
|
## generated files
|
||||||
|
|||||||
@ -11,12 +11,12 @@ const Version = require('../../scripts/Version');
|
|||||||
const versionedOpts = [
|
const versionedOpts = [
|
||||||
{
|
{
|
||||||
version: '*',
|
version: '*',
|
||||||
directory: fromRoot('esvm'),
|
directory: fromRoot('tmp/esvm'),
|
||||||
nodes: 1,
|
nodes: 1,
|
||||||
quiet: false,
|
quiet: false,
|
||||||
logLevel: 'ERROR',
|
logLevel: 'ERROR',
|
||||||
config: {
|
config: {
|
||||||
'path.data': fromRoot('esvm/data_dir'),
|
'path.data': fromRoot('tmp/esvm/data_dir'),
|
||||||
'node.name': 'elasticsearch_js_test_runner',
|
'node.name': 'elasticsearch_js_test_runner',
|
||||||
'cluster.name': 'elasticsearch_js_test_runners',
|
'cluster.name': 'elasticsearch_js_test_runners',
|
||||||
'http.port': port,
|
'http.port': port,
|
||||||
@ -71,7 +71,7 @@ const versionedOpts = [
|
|||||||
version: '>=1.6',
|
version: '>=1.6',
|
||||||
config: {
|
config: {
|
||||||
'script.inline': true,
|
'script.inline': true,
|
||||||
'path.repo': process.env.ES_PATH_REPO || fromRoot('.es-snapshot-repos'),
|
'path.repo': process.env.ES_PATH_REPO || fromRoot('tmp/.es-snapshot-repos'),
|
||||||
'repositories.url.allowed_urls': 'http://snapshot.*'
|
'repositories.url.allowed_urls': 'http://snapshot.*'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -57,4 +57,4 @@ install_node "$(cat ./.node-version)"
|
|||||||
yarn
|
yarn
|
||||||
release_lock
|
release_lock
|
||||||
|
|
||||||
ES_PATH_REPO="./.es-snapshot-repos/$EXECUTOR_NUMBER/" ES_PORT=$((9400 + EXECUTOR_NUMBER)) RUN=NODE_UNIT,NODE_INTEGRATION VERBOSE=true node ./scripts/ci.js
|
ES_PATH_REPO="./tmp/.es-snapshot-repos/$EXECUTOR_NUMBER/" ES_PORT=$((9400 + EXECUTOR_NUMBER)) RUN=NODE_UNIT,NODE_INTEGRATION VERBOSE=true node ./scripts/ci.js
|
||||||
|
|||||||
Reference in New Issue
Block a user