Skip to content

Commit a0b4f39

Browse files
committed
update references to .jenkins
1 parent cbe9cb3 commit a0b4f39

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.ci/jobs/defaults.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@
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:
@@ -69,7 +69,7 @@
6969
builders:
7070
- shell: |-
7171
#!/usr/local/bin/runbld
72-
.jenkins/run-tests
72+
.ci/run-tests
7373
publishers:
7474
- email:
7575
recipients: [email protected]

.ci/run-tests

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ docker run \
8585
status=100
8686
case $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=$?

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@ else
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")
282282
endif
283283
endif
284284
@docker network inspect elasticsearch > /dev/null 2>&1 || docker network create elasticsearch;

0 commit comments

Comments
 (0)