This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch fix_gha_workflow_check_cpp_files in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit dc232771abcd402b335f906958c335a14c606e78 Author: Lee Rhodes <[email protected]> AuthorDate: Wed Dec 18 17:49:20 2024 -0800 Correct indentation in GHAW auto-check_cpp_files.yml --- .github/workflows/auto-check_cpp_files.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-check_cpp_files.yml b/.github/workflows/auto-check_cpp_files.yml index 4b06687e..068b12f4 100644 --- a/.github/workflows/auto-check_cpp_files.yml +++ b/.github/workflows/auto-check_cpp_files.yml @@ -13,32 +13,32 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Checkout C++ + - name: Checkout C++ uses: actions/checkout@v4 with: repository: apache/datasketches-cpp path: cpp - - name: Setup Java + - name: Setup Java uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' - - name: Configure C++ build + - name: Configure C++ build run: cd cpp/build && cmake .. -DGENERATE=true - - name: Build C++ unit tests + - name: Build C++ unit tests run: cd cpp && cmake --build build --config Release - - name: Run C++ tests + - name: Run C++ tests run: cd cpp && cmake --build build --config Release --target test - - name: Make dir + - name: Make dir run: mkdir -p serialization_test_data/cpp_generated_files - name: Copy files run: cp cpp/build/*/test/*_cpp.sk serialization_test_data/cpp_generated_files - - name: Run Java tests + - name: Run Java tests run: mvn test -P check-cpp-files --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
