diff --git a/.github/workflows/core-integration-test.yml b/.github/workflows/core-integration-test.yml index b790db01d7..2673d4addf 100644 --- a/.github/workflows/core-integration-test.yml +++ b/.github/workflows/core-integration-test.yml @@ -74,6 +74,15 @@ jobs: ZITADEL_MASTERKEY: MasterkeyNeedsToHave32Characters INTEGRATION_DB_FLAVOR: postgres run: make core_integration_test + - + name: upload server logs + if: always() + uses: actions/upload-artifact@v4 + with: + name: integration-test-server-logs + path: | + tmp/zitadel.log + tmp/race.log.* - name: publish coverage uses: codecov/codecov-action@v4.3.0 diff --git a/Makefile b/Makefile index 56788e9f34..17e1bbd9b7 100644 --- a/Makefile +++ b/Makefile @@ -150,8 +150,6 @@ core_integration_server_stop: .PHONY: core_integration_reports core_integration_reports: go tool covdata textfmt -i=tmp/coverage -pkg=github.com/zitadel/zitadel/internal/...,github.com/zitadel/zitadel/cmd/... -o profile.cov - $(RM) -r tmp/coverage - cat tmp/zitadel.log .PHONY: core_integration_test core_integration_test: core_integration_server_start core_integration_test_packages core_integration_server_stop core_integration_reports