Skip to content

dependabot: bump org.gradle.test-retry from 1.6.2 to 1.6.4 #218

dependabot: bump org.gradle.test-retry from 1.6.2 to 1.6.4

dependabot: bump org.gradle.test-retry from 1.6.2 to 1.6.4 #218

name: Integ tests with Multiple Nodes
# This workflow is triggered on pull requests and pushes to main or an OpenSearch release branch
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
build:
strategy:
matrix:
java: [ 21 ]
numNodes: [ 2 ]
# Job name
name: Build and test Job-scheduler
# This job runs on Linux
runs-on: ubuntu-latest
steps:
# This step uses the setup-java Github action: https://github.com/actions/setup-java
- name: Set Up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: ${{ matrix.java }}
# This step uses the checkout Github action: https://github.com/actions/checkout
- name: Checkout Branch
uses: actions/checkout@v5
- name: Run Job-scheduler Integ Tests with Multiple Nodes
run: |
echo "Running integ tests with multiple nodes..."
./gradlew :opensearch-job-scheduler-sample-extension:integTest -PnumNodes=${{ matrix.numNodes }}