Skip to content

Commit

Permalink
Switch Airgun CI/CQ to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
ogajduse committed Dec 19, 2024
1 parent 06e081f commit 89365e2
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
PYCURL_SSL_LIBRARY: openssl
UV_SYSTEM_PYTHON: 1

jobs:
codechecks:
Expand All @@ -24,11 +25,19 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install the latest version of uv and set the Python version
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: |
**/requirements*.txt
**/setup.py
- name: Install Dependencies
run: |
sudo apt update
pip install -U pip
pip install -U -r requirements.txt -r requirements-optional.txt
uv pip install -U -r requirements.txt -r requirements-optional.txt
- name: Analysis (git diff)
if: failure()
Expand All @@ -41,6 +50,7 @@ jobs:
robottelo-cross-check:
name: Robottelo installation cross-check
runs-on: ubuntu-latest
needs: codechecks
steps:
- name: Checkout Airgun
uses: actions/checkout@v4
Expand All @@ -50,6 +60,15 @@ jobs:
with:
python-version: '3.12'

- name: Install the latest version of uv and set the Python version
uses: astral-sh/setup-uv@v4
with:
python-version: '3.12'
enable-cache: true
cache-dependency-glob: |
**/requirements*.txt
**/setup.py
- name: Download robottelo's requirements.txt
run: |
curl -s https://raw.githubusercontent.com/SatelliteQE/robottelo/$GITHUB_BASE_REF/requirements.txt -o requirements-robottelo.txt
Expand All @@ -60,5 +79,4 @@ jobs:
- name: Robottelo Installability
run: |
pip install -U pip
pip install -U -r requirements-robottelo.txt -r requirements.txt -r requirements-optional.txt
uv pip install -U -r requirements-robottelo.txt -r requirements.txt -r requirements-optional.txt

0 comments on commit 89365e2

Please sign in to comment.