File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,33 +12,33 @@ jobs:
1212 steps:
1313 - name: Checkout
1414 uses: actions/checkout@v4
15-
15+
1616 - name: Checkout C++
1717 uses: actions/checkout@v4
1818 with:
1919 repository: apache/datasketches-cpp
2020 path: cpp
21-
21+
2222 - name: Setup Java
2323 uses: actions/setup-java@v4
2424 with:
2525 java-version: '17'
2626 distribution: 'temurin'
27-
27+
2828 - name: Configure C++ build
2929 run: cd cpp/build && cmake .. -DGENERATE=true
30-
30+
3131 - name: Build C++ unit tests
3232 run: cd cpp && cmake --build build --config Release
33-
33+
3434 - name: Run C++ tests
3535 run: cd cpp && cmake --build build --config Release --target test
36-
36+
3737 - name: Make dir
3838 run: mkdir -p serialization_test_data/cpp_generated_files
39-
39+
4040 - name: Copy files
4141 run: cp cpp/build/*/test/*_cpp.sk serialization_test_data/cpp_generated_files
42-
42+
4343 - name: Run Java tests
4444 run: mvn test -P check-cpp-files
You can’t perform that action at this time.
0 commit comments