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

[#503] fix(IT): Fix integrate test error logs are not shown issue #504

Merged
merged 1 commit into from
Oct 12, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
- name: Print logs when Graviton integration tests failure
if: ${{ failure() && steps.integrationTest.outcome == 'failure' }}
run: |
if [ -f "integration-test/build/graviton-server.log" ]; then
cat integration-test/build/graviton-server.log
if [ -f "integration-test/build/integration-test.log" ]; then
cat integration-test/build/integration-test.log
fi
if [ -f "distribution/package/logs/graviton-server.out" ]; then
cat distribution/package/logs/graviton-server.out
Expand All @@ -107,4 +107,4 @@ jobs:
docker stop ${DOCKER_RUN_NAME}
sleep 3
docker ps -a
docker rmi ${HIVE_IMAGE_NAME}:${HIVE_IMAGE_TAG_NAME}
docker rmi ${HIVE_IMAGE_NAME}:${HIVE_IMAGE_TAG_NAME}