React to Tracer changes in TransportService from core#9415 #402
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test Anomaly detection | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build-ad-windows: | |
strategy: | |
matrix: | |
java: [ 11, 17, 20 ] | |
name: Build and Test Anomaly Detection Plugin on Windows | |
runs-on: windows-latest | |
env: | |
JENKINS_URL: build.ci.opensearch.org | |
steps: | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Checkout Anomaly Detection | |
uses: actions/checkout@v2 | |
- name: Build and Run Tests | |
run: | | |
./gradlew build | |
- name: Publish to Maven Local | |
run: | | |
./gradlew publishToMavenLocal | |
- name: Multi Nodes Integration Testing | |
run: | | |
./gradlew integTest -PnumNodes=3 | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./build/reports/jacoco/test/jacocoTestReport.xml | |
flags: plugin | |
Build-ad: | |
strategy: | |
matrix: | |
java: [11,17,20] | |
os: [ubuntu-latest, macos-latest] | |
fail-fast: false | |
name: Build and Test Anomaly detection Plugin | |
runs-on: ${{ matrix.os }} | |
env: | |
JENKINS_URL: build.ci.opensearch.org | |
steps: | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Checkout AD | |
uses: actions/checkout@v2 | |
- name: Assemble anomaly-detection | |
run: | | |
./gradlew assemble | |
- name: Build and Run Tests | |
run: | | |
./gradlew build | |
- name: Publish to Maven Local | |
run: | | |
./gradlew publishToMavenLocal | |
- name: Multi Nodes Integration Testing | |
run: | | |
./gradlew integTest -PnumNodes=3 | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./build/reports/jacoco/test/jacocoTestReport.xml | |
flags: plugin |