| name: "Copilot Setup Steps" |
|
|
| |
| |
| on: |
| workflow_dispatch: |
| push: |
| paths: |
| - .github/workflows/copilot-setup-steps.yml |
| pull_request: |
| paths: |
| - .github/workflows/copilot-setup-steps.yml |
|
|
| jobs: |
| |
| copilot-setup-steps: |
| runs-on: ubuntu-latest |
|
|
| |
| |
| permissions: |
| |
| contents: read |
|
|
| |
| |
| steps: |
| - name: Checkout code |
| uses: actions/checkout@v6 |
|
|
| - name: ccache |
| uses: ggml-org/ccache-action@v1.2.21 |
| with: |
| key: copilot-setup-steps |
| evict-old-files: 1d |
|
|
| - name: Dependencies |
| id: depends |
| run: | |
| sudo apt-get update |
| sudo apt-get install build-essential libssl-dev |
| # Install git-clang-format script for formatting only changed code |
| wget -O /tmp/git-clang-format https://raw.githubusercontent.com/llvm/llvm-project/release/18.x/clang/tools/clang-format/git-clang-format |
| sudo cp /tmp/git-clang-format /usr/local/bin/git-clang-format |
| sudo chmod +x /usr/local/bin/git-clang-format |
| |
| - name: Set up Python |
| uses: actions/setup-python@v6 |
| with: |
| python-version: '3.11' |
|
|
| - name: Install Python dependencies |
| run: | |
| python3 -m venv .venv |
| source .venv/bin/activate |
| pip install -r requirements/requirements-all.txt -r tools/server/tests/requirements.txt |
| pip install flake8 pyright pre-commit |
| |