File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 4545 - linux
4646 - axis :
4747 type : yaml
48- filename : .jenkins /test-matrix.yml
48+ filename : .ci /test-matrix.yml
4949 name : STACK_VERSION
5050 - axis :
5151 type : yaml
52- filename : .jenkins /test-matrix.yml
52+ filename : .ci /test-matrix.yml
5353 name : GO_VERSION
5454 - axis :
5555 type : yaml
56- filename : .jenkins /test-matrix.yml
56+ filename : .ci /test-matrix.yml
5757 name : TEST_SUITE
5858 yaml-strategy :
5959 exclude-key : exclude
60- filename : .jenkins /test-matrix.yml
60+ filename : .ci /test-matrix.yml
6161 wrappers :
6262 - ansicolor
6363 - timeout :
6969 builders :
7070 - shell : |-
7171 #!/usr/local/bin/runbld
72- .jenkins /run-tests
72+ .ci /run-tests
7373 publishers :
7474 - email :
7575
Original file line number Diff line number Diff line change @@ -85,14 +85,14 @@ docker run \
8585status=100
8686case $TEST_SUITE in
8787 " core" )
88- if ELASTICSEARCH_VERSION=" $ELASTICSEARCH_VERSION " bash .jenkins /tests-core.sh; then
88+ if ELASTICSEARCH_VERSION=" $ELASTICSEARCH_VERSION " bash .ci /tests-core.sh; then
8989 status=$?
9090 else
9191 status=$?
9292 fi
9393 ;;
9494 " xpack" )
95- if ELASTICSEARCH_VERSION=" $ELASTICSEARCH_VERSION " bash .jenkins /tests-xpack.sh; then
95+ if ELASTICSEARCH_VERSION=" $ELASTICSEARCH_VERSION " bash .ci /tests-xpack.sh; then
9696 status=$?
9797 else
9898 status=$?
Original file line number Diff line number Diff line change 276276 $(eval xpack_env += --env "xpack.security.transport.ssl.certificate=certs/elasticsearch.crt")
277277 $(eval xpack_env += --env "xpack.security.transport.ssl.certificate_authorities=certs/ca.crt")
278278 $(eval xpack_env += --env "xpack.security.transport.ssl.verification_mode=none")
279- $(eval xpack_volumes += --volume "$(PWD)/.jenkins /certs/elasticsearch.crt:/usr/share/elasticsearch/config/certs/elasticsearch.crt")
280- $(eval xpack_volumes += --volume "$(PWD)/.jenkins /certs/elasticsearch.key:/usr/share/elasticsearch/config/certs/elasticsearch.key")
281- $(eval xpack_volumes += --volume "$(PWD)/.jenkins /certs/ca.crt:/usr/share/elasticsearch/config/certs/ca.crt")
279+ $(eval xpack_volumes += --volume "$(PWD)/.ci /certs/elasticsearch.crt:/usr/share/elasticsearch/config/certs/elasticsearch.crt")
280+ $(eval xpack_volumes += --volume "$(PWD)/.ci /certs/elasticsearch.key:/usr/share/elasticsearch/config/certs/elasticsearch.key")
281+ $(eval xpack_volumes += --volume "$(PWD)/.ci /certs/ca.crt:/usr/share/elasticsearch/config/certs/ca.crt")
282282endif
283283endif
284284 @docker network inspect elasticsearch > /dev/null 2>&1 || docker network create elasticsearch;
You can’t perform that action at this time.
0 commit comments