[codex] install Allure and preserve test entrypoints - #127
Draft
kycheng wants to merge 3 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
/app/bin/sonarqube-e2e.testas the image entrypoint/app/testing/sonarqube-e2e.testas a compatibility symlinkWhy
The release-test workflow generates Allure results and then renders an HTML report inside the test image, but the current image does not contain the Allure CLI. The image also copies the test binary to
/app/binwhile its entrypoint points at the non-existent/app/testingpath.The Allure installation follows the approach validated in AlaudaDevops/tektoncd-pipeline#289. Keeping both test-binary paths avoids breaking existing consumers while the canonical entrypoint moves to
/app/bin.Validation
git diff --checkallure --versionresolves to2.32.0/app/bin/sonarqube-e2e.testand the compatibility path/app/testing/sonarqube-e2e.testare executable and resolve to the same binary/app/bin/sonarqube-e2e.testThe full build from
build-harbor.alauda.cn/devops/sonarqube-ce-test-base:latestis currently blocked because that base image references a missing remote layer blob. The changed runtime layer itself was validated against the latest locally available SonarQube test image.