Skip to content

Commit

Permalink
Merge pull request #60 from rohanpm/ci-apt-get-fix
Browse files Browse the repository at this point in the history
[ci] fix install of OS packages in CI workflows
  • Loading branch information
rohanpm authored Nov 14, 2023
2 parents 9727427 + ee781b3 commit 997c790
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/tox-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install RPM
run: sudo apt-get install -y rpm cpio libkrb5-dev
- name: Install OS packages
run: |
sudo apt-get -y update
sudo apt-get install -y rpm cpio libkrb5-dev
- name: Upgrade pip
run: pip install --upgrade pip
- name: Setup Python
Expand All @@ -24,8 +26,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install RPM
run: sudo apt-get install -y rpm cpio libkrb5-dev
- name: Install OS packages
run: |
sudo apt-get -y update
sudo apt-get install -y rpm cpio libkrb5-dev
- name: Setup Python
uses: actions/setup-python@v2
with:
Expand All @@ -45,8 +49,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install RPM
- name: Install OS packages
run: |
sudo apt-get -y update
sudo apt-get install -y rpm
sudo apt-get install -y libkrb5-dev
- name: Setup Python
Expand All @@ -61,8 +66,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install RPM
- name: Install OS packages
run: |
sudo apt-get -y update
sudo apt-get install -y rpm
sudo apt-get install -y libkrb5-dev
- name: Setup Python
Expand Down

0 comments on commit 997c790

Please sign in to comment.