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
|
||||
.idea
|
||||
esvm
|
||||
.es-snapshot-repos
|
||||
/tmp
|
||||
|
||||
## generated files
|
||||
|
||||
@ -7,7 +7,6 @@ test/integration/yaml_suite/log
|
||||
.aws-config.json
|
||||
.idea
|
||||
esvm
|
||||
.es-snapshot-repos
|
||||
/tmp
|
||||
|
||||
## generated files
|
||||
|
||||
@ -11,12 +11,12 @@ const Version = require('../../scripts/Version');
|
||||
const versionedOpts = [
|
||||
{
|
||||
version: '*',
|
||||
directory: fromRoot('esvm'),
|
||||
directory: fromRoot('tmp/esvm'),
|
||||
nodes: 1,
|
||||
quiet: false,
|
||||
logLevel: 'ERROR',
|
||||
config: {
|
||||
'path.data': fromRoot('esvm/data_dir'),
|
||||
'path.data': fromRoot('tmp/esvm/data_dir'),
|
||||
'node.name': 'elasticsearch_js_test_runner',
|
||||
'cluster.name': 'elasticsearch_js_test_runners',
|
||||
'http.port': port,
|
||||
@ -71,7 +71,7 @@ const versionedOpts = [
|
||||
version: '>=1.6',
|
||||
config: {
|
||||
'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.*'
|
||||
}
|
||||
}
|
||||
|
||||
@ -57,4 +57,4 @@ install_node "$(cat ./.node-version)"
|
||||
yarn
|
||||
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