[Backport main] [AUTO] Add release notes for 3.6.0 #1938
Workflow file for this run
This file contains hidden or 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: | |
| Get-CI-Image-Tag: | |
| uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main | |
| with: | |
| product: opensearch | |
| spotless: | |
| if: github.repository == 'opensearch-project/anomaly-detection' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Spotless Check | |
| run: ./gradlew spotlessCheck | |
| Build-ad-windows: | |
| needs: spotless | |
| strategy: | |
| matrix: | |
| java: [21, 25] | |
| 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@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Checkout Anomaly Detection | |
| uses: actions/checkout@v6 | |
| - name: Build and Run Tests | |
| run: | | |
| ./gradlew build -x spotlessJava | |
| - name: Publish to Maven Local | |
| run: | | |
| ./gradlew publishToMavenLocal | |
| - name: Multi Nodes Integration Testing | |
| run: | | |
| ./gradlew integTest -PnumNodes=3 | |
| Build-ad-linux: | |
| needs: [Get-CI-Image-Tag, spotless] | |
| strategy: | |
| matrix: | |
| java: [21, 25] | |
| fail-fast: false | |
| name: Build and Test Anomaly detection Plugin on Linux | |
| runs-on: ubuntu-latest | |
| container: | |
| # using the same image which is used by opensearch-build team to build the OpenSearch Distribution | |
| # this image tag is subject to change as more dependencies and updates will arrive over time | |
| image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} | |
| # need to switch to root so that github actions can install runner binary on container without permission issues. | |
| options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }} | |
| env: | |
| JENKINS_URL: build.ci.opensearch.org | |
| steps: | |
| - name: Run start commands | |
| run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }} | |
| - name: Setup Java ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Checkout AD | |
| uses: actions/checkout@v6 | |
| - name: Assemble / build / mavenlocal / integTest | |
| run: | | |
| chown -R 1000:1000 `pwd` | |
| su `id -un 1000` -c "./gradlew assemble && | |
| ./gradlew build -x spotlessJava && | |
| ./gradlew publishToMavenLocal && | |
| ./gradlew integTest -PnumNodes=3" | |
| Build-ad-macos: | |
| needs: spotless | |
| strategy: | |
| matrix: | |
| java: [21, 25] | |
| fail-fast: false | |
| name: Build and Test Anomaly detection Plugin on MacOS | |
| runs-on: macos-15-intel | |
| env: | |
| JENKINS_URL: build.ci.opensearch.org | |
| steps: | |
| - name: Setup Java ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Checkout AD | |
| uses: actions/checkout@v6 | |
| - name: Assemble anomaly-detection | |
| run: | | |
| ./gradlew assemble | |
| - name: Build and Run Tests | |
| run: | | |
| ./gradlew build -x spotlessJava | |
| - name: Summarize JaCoCo Reports | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| summarize() { | |
| local file="$1" | |
| local label="$2" | |
| if [[ ! -f "$file" ]]; then | |
| echo "Missing coverage report: $file" | |
| exit 1 | |
| fi | |
| local line_counter | |
| line_counter=$(grep -o '<counter type="LINE" missed="[0-9]*" covered="[0-9]*"/>' "$file" | tail -1) | |
| local branch_counter | |
| branch_counter=$(grep -o '<counter type="BRANCH" missed="[0-9]*" covered="[0-9]*"/>' "$file" | tail -1) | |
| if [[ -z "$line_counter" || -z "$branch_counter" ]]; then | |
| echo "Unable to parse coverage counters from: $file" | |
| exit 1 | |
| fi | |
| echo "${label} report: $file" | |
| echo " ${line_counter}" | |
| echo " ${branch_counter}" | |
| } | |
| summarize "./build/reports/jacoco/test/jacocoTestReport.xml" "combined" | |
| summarize "./build/reports/jacoco/integTest/jacocoIntegTestReport.xml" "integ" | |
| # coverage.gradle is only applied in single local node test | |
| - name: Upload Combined Coverage Report | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| name: combined-jacoco-java${{ matrix.java }} | |
| files: ./build/reports/jacoco/test/jacocoTestReport.xml | |
| disable_search: true | |
| flags: plugin | |
| - name: Upload integTest Coverage Report | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| name: integ-jacoco-java${{ matrix.java }} | |
| files: ./build/reports/jacoco/integTest/jacocoIntegTestReport.xml | |
| disable_search: true | |
| flags: plugin_integtest | |
| - name: Publish to Maven Local | |
| run: | | |
| ./gradlew publishToMavenLocal | |
| - name: Multi Nodes Integration Testing | |
| run: | | |
| ./gradlew integTest -PnumNodes=3 |