Update Copilot setup workflow for containerized runner#425
Draft
JoseSantosAMD wants to merge 2 commits intomainfrom
Draft
Update Copilot setup workflow for containerized runner#425JoseSantosAMD wants to merge 2 commits intomainfrom
JoseSantosAMD wants to merge 2 commits intomainfrom
Conversation
- Use /opt/venv as base Python with --system-site-packages for the task venv, bridging packages via site.addsitedir() in a .pth file so editable installs (e.g. triton) are discovered correctly - Export UV_CACHE_DIR via $GITHUB_ENV (other env vars are set by runner-container.env) - Create cache directories under $RUNNER_WORKDIR - Install iris in editable mode (pip install -e .) - Add IntelliKit Python packages (linex, metrix) - Clone IntelliKit repo for MCP servers and install agent skills - Install uv for MCP server dependency management - Reduce timeout from 600 to 59 minutes Made-with: Cursor
mawad-amd
reviewed
Mar 5, 2026
revert timeout
mawad-amd
reviewed
Mar 5, 2026
| cd "$GITHUB_WORKSPACE" | ||
| mkdir -p "${RUNNER_WORKDIR}/.home" "${RUNNER_WORKDIR}/.pip-cache" "${RUNNER_WORKDIR}/.tmp" "${RUNNER_WORKDIR}/.uv-cache" "${RUNNER_WORKDIR}/.cache" | ||
| echo "UV_CACHE_DIR=${RUNNER_WORKDIR}/.uv-cache" >> "$GITHUB_ENV" | ||
| /opt/venv/bin/python -m venv --system-site-packages .venv |
Collaborator
There was a problem hiding this comment.
This looks fine for now but I wonder if we can move all that logic into the apptainer image itself.
mawad-amd
reviewed
Mar 5, 2026
Comment on lines
+62
to
+63
| bash -s -- --target agents --base-url https://raw.githubusercontent.com/AMDResearch/intellikit/main | ||
| cp -r .agents/skills/* .github/agents/skills/ 2>/dev/null || true |
Collaborator
There was a problem hiding this comment.
Suggested change
| bash -s -- --target agents --base-url https://raw.githubusercontent.com/AMDResearch/intellikit/main | |
| cp -r .agents/skills/* .github/agents/skills/ 2>/dev/null || true | |
| bash -s -- --target github --base-url https://raw.githubusercontent.com/AMDResearch/intellikit/main |
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.
Made-with: Cursor
Motivation
Technical Details
Test Plan
Test Result
Submission Checklist