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
{{ message }}
This repository is currently being migrated. It's locked while the migration is in progress.
Having pre/post hooks for each specific compiler could be helpful. For example in notifying TeamCity that compilations have been started for specific compilers
For tests it would allow pushing reports sooner after each specific test runner.
The text was updated successfully, but these errors were encountered:
What do you think this would look like within the hooks?
defpre_compileputs'before all compilers'enddefpre_compiler(name)puts"before compiler #{name}"enddefpost_compiler(name)puts"after compiler #{name}"enddefpost_compileputs'after all compilers'end
Something along those lines looks ok but I'm a bit wary of adding complexity for the needs of a specific build server. TeamCity can be set up to look for test reports and seems to do that continuously without the need to prompt it. Also, the case of having several compilers, particularly long running ones where this would be useful, doesn't feel like it would be common.
The reason I was wanting the bozo teamcity script to notify teamcity of reports was so zero configuration for artifacts and reports had to be made to teamcity apart from creating the buildstep.
Along with the pre/post compile/test hooks.
Having pre/post hooks for each specific compiler could be helpful. For example in notifying TeamCity that compilations have been started for specific compilers
For tests it would allow pushing reports sooner after each specific test runner.
The text was updated successfully, but these errors were encountered: