Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit c27a763

Browse files
authored
Adds multi node test workflow (#256)
1 parent 41925f3 commit c27a763

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Multi node test workflow
2+
# This workflow is triggered on pull requests to master
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
# Job name
14+
name: Build Index Management
15+
# This job runs on Linux
16+
runs-on: ubuntu-latest
17+
steps:
18+
# This step uses the checkout Github action: https://github.com/actions/checkout
19+
- name: Checkout Branch
20+
uses: actions/checkout@v2
21+
# This step uses the setup-java Github action: https://github.com/actions/setup-java
22+
- name: Set Up JDK 14
23+
uses: actions/setup-java@v1
24+
with:
25+
java-version: 14
26+
- name: Run integration tests with multi node config
27+
run: ./gradlew integTest -PnumNodes=3

0 commit comments

Comments
 (0)