Skip to content

Commit 7576eed

Browse files
authored
Install azsdk mcp server in copilot setup steps (#42227)
* Install azsdk mcp server in copilot setup steps * use pwsh shell
1 parent a6706d7 commit 7576eed

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,26 @@ jobs:
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
15-
15+
1616
- name: Setup Python
1717
uses: actions/setup-python@v4
1818
with:
1919
python-version: '3.9'
2020
cache: 'pip'
21-
21+
2222
- name: Create and activate virtual environment
2323
run: |
2424
python -m venv .venv
2525
source .venv/bin/activate
2626
echo "VIRTUAL_ENV=$(pwd)/.venv" >> $GITHUB_ENV
2727
echo "$(pwd)/.venv/bin" >> $GITHUB_PATH
28-
28+
2929
- name: Install Dependencies
3030
run: |
3131
python -m pip install --upgrade pip
3232
python -m pip install -r eng/ci_tools.txt
33+
34+
- name: Install azsdk mcp server
35+
shell: pwsh
36+
run: |
37+
./eng/common/mcp/azure-sdk-mcp.ps1 -InstallDirectory $HOME/bin

0 commit comments

Comments
 (0)