Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct indentation in GHAW auto-check_cpp_files.yml #618

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading