Skip to content

Commit

Permalink
Merge pull request #618 from apache/fix_gha_workflow_check_cpp_files
Browse files Browse the repository at this point in the history
Correct indentation in GHAW auto-check_cpp_files.yml
  • Loading branch information
leerho authored Dec 19, 2024
2 parents 5819b40 + dc23277 commit 301c560
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/auto-check_cpp_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 301c560

Please sign in to comment.