Skip to content

Commit

Permalink
Cross check Airgun installation with robottelo's dependencies (#1676) (
Browse files Browse the repository at this point in the history
…#1680)

(cherry picked from commit 06e081f)

Co-authored-by: Ondřej Gajdušek <[email protected]>
Satellite-QE and ogajduse authored Dec 19, 2024

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
1 parent 972ca6b commit 74bc1fa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -37,3 +37,28 @@ jobs:
- name: Docs Build
run: |
make docs-html
robottelo-cross-check:
name: Robottelo installation cross-check
runs-on: ubuntu-latest
steps:
- name: Checkout Airgun
uses: actions/checkout@v4

- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Download robottelo's requirements.txt
run: |
curl -s https://raw.githubusercontent.com/SatelliteQE/robottelo/$GITHUB_BASE_REF/requirements.txt -o requirements-robottelo.txt
- name: Remove airgun from robottelo requirements
run: |
sed -i '/airgun/d' requirements-robottelo.txt
- name: Robottelo Installability
run: |
pip install -U pip
pip install -U -r requirements-robottelo.txt -r requirements.txt -r requirements-optional.txt

0 comments on commit 74bc1fa

Please sign in to comment.