From d2e4d3a0efa1b2272f91e1486ef6ea4a869805ec Mon Sep 17 00:00:00 2001 From: Sorabh Date: Fri, 21 Jul 2023 16:31:14 -0700 Subject: [PATCH 1/2] Create cs.yml --- .github/workflows/cs.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/cs.yml diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml new file mode 100644 index 0000000000000..627c15ed569a2 --- /dev/null +++ b/.github/workflows/cs.yml @@ -0,0 +1,34 @@ +--- +name: Concurrent Search UTs and ITs + +on: + schedule: + - cron: '0 */4 * * *' # every 4 hours + workflow_dispatch: # on button click + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] # precommit on ubuntu-latest is run as a part of the gradle-check workflow + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + if: always() + uses: actions/setup-java@v2 + with: + java-version: 11 + distribution: adopt + - name: Build the repo + if: always() + run: | + ./gradlew assemble -x :distribution:docker:buildArm64DockerImage -x :distribution:docker:buildDockerImage -x :distribution:docker:buildPpc64leDockerImage -x :distribution:docker:docker-export:exportDockerImage -x :distribution:docker:buildS390xDockerImage -x :distribution:docker:docker-ppc64le-export:exportDockerImage -x :distribution:docker:docker-s390x-export:exportDockerImage + - name: Run Gradle unit tests + if: always() + run: | + ./gradlew test -Dopensearch.experimental.feature.concurrent_segment_search.enabled=true + - name: Run Gradle integration tests + if: always() + run: | + ./gradlew internalClusterTest --parallel -Dopensearch.experimental.feature.concurrent_segment_search.enabled=true From 9fad27f79e4d254193a0a53e78714a0692f2c380 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jul 2023 18:31:00 +0000 Subject: [PATCH 2/2] Bump com.maxmind.geoip2:geoip2 in /modules/ingest-geoip Bumps [com.maxmind.geoip2:geoip2](https://github.com/maxmind/GeoIP2-java) from 4.0.1 to 4.1.0. - [Release notes](https://github.com/maxmind/GeoIP2-java/releases) - [Changelog](https://github.com/maxmind/GeoIP2-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/maxmind/GeoIP2-java/compare/v4.0.1...v4.1.0) --- updated-dependencies: - dependency-name: com.maxmind.geoip2:geoip2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- modules/ingest-geoip/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ingest-geoip/build.gradle b/modules/ingest-geoip/build.gradle index 35b7de8f83164..e126cf37e33a2 100644 --- a/modules/ingest-geoip/build.gradle +++ b/modules/ingest-geoip/build.gradle @@ -39,7 +39,7 @@ opensearchplugin { } dependencies { - api('com.maxmind.geoip2:geoip2:4.0.1') + api('com.maxmind.geoip2:geoip2:4.1.0') // geoip2 dependencies: api('com.maxmind.db:maxmind-db:3.0.0') api("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")