Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve indexing of PID records. #6

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -14,19 +14,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# Use both LTS releases and latest one
jdk: [ 8, 13 ]
# Test with LTS releases
jdk: [ 8, 11 ]
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up OpenJDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
- name: Pull elasticsearch image from docker
run: docker pull elasticsearch:7.9.3
- name: Create and run elasticsearch container
run: docker run -d --name elasticsearch4metastore -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.9.3
distribution: 'zulu' # =openJDK
cache: gradle
- name: Set up elasticsearch
run: docker compose up -d elasticsearch
- name: Install python
run: sudo apt-get install --assume-yes python3 python3-setuptools python3-pip
- name: Update pip
@@ -41,4 +41,6 @@ jobs:
uses: codecov/codecov-action@v1
with:
files: ./build/reports/jacoco/test/jacocoTestReport.xml #optional
- name: Shut down elasticsearch
run: docker compose down

15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
services:

elasticsearch:
image: elasticsearch:7.9.3
ports:
- "9200:9200"
- "9300:9300"
environment:
- discovery.type=single-node

rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672"
- "15672:15672"