This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 3ceadaa72e8e30a94eb544a58f3a97e6c81544c7 Author: Stephen Mallette <[email protected]> AuthorDate: Wed Feb 18 18:34:55 2026 -0500 Added hadoop-gremlin to GHA CTR --- .github/workflows/build-test.yml | 24 ++++++++++++++++++++++ .../computer/util/ComputerSubmissionHelper.java | 3 +-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index e80dc40f05..6e192a2be7 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -125,6 +125,30 @@ jobs: # name: ${{ github.sha }} # path: ./gremlin-server/gremlin-server.tar # retention-days: 1 + hadoop: + name: hadoop + timeout-minutes: 45 + needs: smoke + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + steps: + - uses: actions/checkout@v6 + - name: Set up JDK 11 + uses: actions/setup-java@v5 + with: + java-version: '11' + distribution: 'temurin' + - name: Build with Maven Windows + if: runner.os == 'Windows' + run: | + mvn clean install -pl -:gremlin-javascript,-:gremlin-python,-gremlin-dotnet,-:gremlin-dotnet-source,-:gremlin-dotnet-tests,-:gremlint -q -DskipTests -DskipImageBuild -Dci + - name: Build with Maven Ubuntu + if: runner.os == 'Linux' + run: | + mvn clean install -pl -:gremlin-javascript,-:gremlin-python,-gremlin-dotnet,-:gremlin-dotnet-source,-:gremlin-dotnet-tests,-:gremlint -q -DskipTests -Dci + mvn verify -pl :hadoop-gremlin -DskipTests -DskipIntegrationTests=false spark-core: name: spark core timeout-minutes: 45 diff --git a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java index e010beebd8..e07d93a180 100644 --- a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java +++ b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java @@ -26,8 +26,7 @@ import java.util.concurrent.ForkJoinPool; import java.util.concurrent.Future; import java.util.concurrent.ThreadFactory; import java.util.function.Supplier; - -import com.google.common.base.Function; +import java.util.function.Function; import org.apache.tinkerpop.gremlin.process.computer.ComputerResult;
