Install swig in green dragon venv #71
Workflow file for this run
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
| name: CI Python Unit Tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| run_tests: | |
| name: Check CI Python Unit Tests | |
| if: github.repository_owner == 'llvm' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| cache: 'pip' | |
| - name: Install Python Dependencies | |
| run: | | |
| pip3 install -r premerge/buildbot/requirements.lock.txt | |
| pip3 install -r premerge/advisor/requirements.lock.txt | |
| pip3 install pytest==8.4.1 | |
| - name: Run Tests | |
| run: pytest premerge/ zorg/buildbot/builders/annotated/premerge/dispatch_job_test.py |