Updating CVML CI tests to reflect instruction updates in PR #236#307
Merged
Conversation
…er test. The working dir is deleted before running the next test anyways.
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.
opencv.mdby removing steps 5–7 (no longer setting permanent env variables likeOPENCV_INSTALL_ROOT,OpenCV_DIR, or modifying system library paths)RyzenAI-SW; it downloads and extracts theRyzen AI CVML LibraryZIP and setsAMD_CVML_SDK_ROOT.OPENCV_INSTALL_ROOTin the build command, so CI should not requireOpenCV_DIR.AMD_CVML_SDK_ROOTas the CVML root, not a cloned repo. The updated README tells users to extract toC:\RyzenAI-Libraryor~/RyzenAI-Libraryand setAMD_CVML_SDK_ROOT.opencv.mdbased on the comment: https://github.com/amd/playbooks/pull/236/changes#r3311358870IMPORTANT note on Linux Runner Setup
cvml-build-and-face-detection-linuxtest was passing from manul terminal run but failing from GitHub Actions workflow.LimitMEMLOCK=infinityfor the actions runner service.1. Run
sudo systemctl edit actions.runner.<SERVICE-NAME>.serviceand add the lines:[Service]LimitMEMLOCK=infinityLimitNOFILE=10485762.
sudo systemctl daemon-reload3.
sudo systemctl restart actions.runner.<SERVICE-NAME>.service