-
Notifications
You must be signed in to change notification settings - Fork 47
Update Copilot setup workflow for containerized runner #425
New issue
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
Changes from all commits
60dc2bd
d0edae4
d9d775e
b642662
9744f25
71dcb2c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,13 +24,42 @@ jobs: | |
|
|
||
| - name: Create task venv for Copilot | ||
| run: | | ||
| python3 -m venv $GITHUB_WORKSPACE/.venv | ||
| source $GITHUB_WORKSPACE/.venv/bin/activate | ||
| cd "$GITHUB_WORKSPACE" | ||
| /opt/venv/bin/python -m venv --system-site-packages .venv | ||
|
mawad-amd marked this conversation as resolved.
|
||
| source .venv/bin/activate | ||
| python -m pip install --upgrade pip | ||
| python -m pip install -e . --no-cache-dir | ||
|
mawad-amd marked this conversation as resolved.
|
||
|
|
||
| - name: Install IntelliKit Python packages | ||
| run: | | ||
| source "$GITHUB_WORKSPACE/.venv/bin/activate" | ||
| pip install --no-cache-dir "git+https://github.com/AMDResearch/intellikit.git#subdirectory=accordo" | ||
| pip install --no-cache-dir "git+https://github.com/AMDResearch/intellikit.git#subdirectory=linex" | ||
| pip install --no-cache-dir "git+https://github.com/AMDResearch/intellikit.git#subdirectory=metrix" | ||
| pip install --no-cache-dir "git+https://github.com/AMDResearch/intellikit.git#subdirectory=nexus" | ||
| pip install --no-cache-dir "git+https://github.com/AMDResearch/intellikit.git#subdirectory=rocm_mcp" | ||
|
mawad-amd marked this conversation as resolved.
Comment on lines
+33
to
+40
|
||
|
|
||
|
|
||
| - name: Install uv for MCP servers | ||
| run: | | ||
| source "$GITHUB_WORKSPACE/.venv/bin/activate" | ||
| pip install --no-cache-dir uv | ||
|
mawad-amd marked this conversation as resolved.
mawad-amd marked this conversation as resolved.
|
||
|
|
||
| - name: Clone IntelliKit for MCP servers | ||
| run: | | ||
| git clone --depth 1 https://github.com/AMDResearch/intellikit.git "$GITHUB_WORKSPACE/.intellikit" | ||
|
|
||
| - name: Install IntelliKit agent skills | ||
| run: | | ||
| cd "$GITHUB_WORKSPACE" | ||
| mkdir -p .github/agents/skills | ||
| curl -sSL https://raw.githubusercontent.com/AMDResearch/intellikit/main/install/skills/install.sh | \ | ||
| bash -s -- --target github --base-url https://raw.githubusercontent.com/AMDResearch/intellikit/main | ||
|
mawad-amd marked this conversation as resolved.
|
||
|
|
||
| - name: Make venv default for subsequent steps | ||
| run: | | ||
| echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH | ||
| echo "$GITHUB_WORKSPACE/.venv/bin" >> "$GITHUB_PATH" | ||
| echo "PYTHONPATH=$GITHUB_WORKSPACE/.venv/lib/python3.13/site-packages:$GITHUB_WORKSPACE${PYTHONPATH:+:$PYTHONPATH}" >> "$GITHUB_ENV" | ||
|
mawad-amd marked this conversation as resolved.
|
||
|
|
||
| - name: Verify ROCm and GPU visibility | ||
| run: | | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.