You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any plans to add https://www.jetbrains.com/teamcity/ to the list of supported services? Or is there any workaround to make it work on TeamCity?
The text was updated successfully, but these errors were encountered:
Hey @pawanrawal We have a similar request, but for Buildkite.
I had a look at the code and it's pretty easy to get it to work with another CI Platform. the -service flag is only text that gets passed through to the API and then you just need to override a few Environment Variables to get the PR number, Branch etc.
This is a how we did it for Buildkite, I'm sure Team City would be similar:
# goveralls only support travis CI and Circle CI so we export ENVs for Buildkite instead.export TRAVIS_JOB_ID=$BUILDKITE_BUILD_NUMBERexport CIRCLE_PR_NUMBER=$BUILDKITE_PULL_REQUESTexport GIT_BRANCH=$BUILDKITE_BRANCH$GOtest -v -covermode=count -coverprofile=coverage.out
$GOPATH/bin/goveralls -coverprofile=coverage.out -service=Buildkite -repotoken $COVERALLS_TOKEN
Are there any plans to add https://www.jetbrains.com/teamcity/ to the list of supported services? Or is there any workaround to make it work on TeamCity?
The text was updated successfully, but these errors were encountered: