We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently we don't use PHI expressions in integration tests at all. We have the following testing pipeline:
bytecode -> (jeo) -> xmir -> (opeo) -> xmir -> (ineo) -> xmir -> (opeo) -> xmir -> (jeo) -> bytecode
So, we convert to PHI, but later we don't use it at all. Instead we have to have the following pipeline:
bytecode -> (jeo) -> xmir -> (opeo) -> xmir -> (eo-maven-plugin) -> phi -> (ineo) -> phi -> (eo-maven-plugin) -> xmir -> (opeo) -> xmir -> (jeo) -> bytecode
The text was updated successfully, but these errors were encountered:
spring-fat
@volodya-lombrozo when do you expect to implement the pipeline?
Sorry, something went wrong.
@deemp Maybe next week. We have significant technical debt for now which should be solved as soon as possible.
volodya-lombrozo
No branches or pull requests
Currently we don't use PHI expressions in integration tests at all. We have the following testing pipeline:
So, we convert to PHI, but later we don't use it at all. Instead we have to have the following pipeline:
The text was updated successfully, but these errors were encountered: