diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-02-13 14:06:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 14:06:17 +0800 |
commit | 5dbf36f356e67c6eb7df68727417702fa100bec5 (patch) | |
tree | 7c624c1302be1515a7c63a4e86ebda75d1d3b580 /.drone.yml | |
parent | 17656021f165f8011e5f462f0336a083321c9e20 (diff) | |
download | gitea-5dbf36f356e67c6eb7df68727417702fa100bec5.tar.gz gitea-5dbf36f356e67c6eb7df68727417702fa100bec5.zip |
Issue search support elasticsearch (#9428)
* Issue search support elasticsearch
* Fix lint
* Add indexer name on app.ini
* add a warnning on SearchIssuesByKeyword
* improve code
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 5796ad503a..b2d16116e3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -86,6 +86,12 @@ services: pull: default image: gitea/test-openldap:latest + - name: elasticsearch + pull: default + environment: + discovery.type: single-node + image: elasticsearch:7.5.0 + steps: - name: fetch-tags pull: default |