Serialization Compatibility Test #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Serialization Compatibility Test | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: SerDe Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Checkout C++ | |
uses: actions/checkout@v3 | |
with: | |
repository: apache/datasketches-cpp | |
path: cpp | |
- name: Configure C++ build | |
run: cd cpp/build && cmake .. -DGENERATE=true | |
- name: Build C++ unit tests | |
run: cd cpp && cmake --build build --config Release | |
- name: Run C++ tests | |
run: cd cpp && cmake --build build --config Release --target test | |
- 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 | |
run: mvn test -P check-cpp-files |