Skip to content

Commit

Permalink
fix: cpp test report broken (#38)
Browse files Browse the repository at this point in the history
fix #36
  • Loading branch information
aceforeverd committed Apr 8, 2021
1 parent e1ca1e2 commit a72e2b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/hybridse-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,21 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: |
build/*.xml
files: build/*.xml
check_name: Cpp Test Report
comment_title: Cpp Test Report

- name: Java SDK Test
run: |
cd java/
mvn -U clean compile test
- name: Publish Java Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: java/hybridse-sdk/target/**/TEST-*.xml
check_name: Java Test Report
comment_title: Java Test Report

- name: Cleanup
Expand Down
2 changes: 1 addition & 1 deletion tools/hybridse_core_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fi
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="hybridse"
make -j"$(nproc)" hybridse_core
make -j"$(nproc)"
SQL_CASE_BASE_DIR=${HYRBIDSE_DIR} make -j"$(nproc)" test

popd

0 comments on commit a72e2b9

Please sign in to comment.