This is an automated email from the ASF dual-hosted git repository. alsay pushed a commit to branch setup-java-action in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit 67b654b8e96d640c0b8865542585f962a24191a8 Author: AlexanderSaydakov <[email protected]> AuthorDate: Tue Oct 15 16:07:34 2024 -0700 explicit java setup --- .github/workflows/check_cpp_files.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/check_cpp_files.yml b/.github/workflows/check_cpp_files.yml index 59ae5824..facef11d 100644 --- a/.github/workflows/check_cpp_files.yml +++ b/.github/workflows/check_cpp_files.yml @@ -18,6 +18,11 @@ jobs: with: repository: apache/datasketches-cpp path: cpp + - name: Setup Java + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' - name: Configure C++ build run: cd cpp/build && cmake .. -DGENERATE=true - name: Build C++ unit tests --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
