Skip to content

Commit

Permalink
Updating github actions used
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurphy18 committed Dec 11, 2024
1 parent ac14d1d commit 852a98f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,15 @@ jobs:
run: |
/usr/bin/docker start ${{ github.run_id }}_salt-test
- name: Download requirements file tests/requirements.txt
uses: actions/download-artifact@v4
with:
- name: tests/requirements.txt

- name: "Install Python Dependencies with pip breakage in container ${{ inputs.container-slug }}"
if: ${{ ( inputs.distro-slug == 'debian-11' ) || ( inputs.distro-slug == 'debian-12' ) || ( inputs.distro-slug == 'debian-13' ) || ( inputs.distro-slug == 'ubuntu-2404' ) }}
run: |
python3 -m pip install --break-system-packages -r tests/requirements.txt
docker exec ${{ github.run_id}}_salt-test python3 -m pip install --break-system-packages -r tests/requirements.txt
- name: "Install Python Dependencies without pip breakage in container ${{ inputs.container-slug }}"
if: ${{ ( inputs.distro-slug != 'debian-11' ) && ( inputs.distro-slug != 'debian-12' ) && ( inputs.distro-slug != 'debian-13' ) && ( inputs.distro-slug != 'ubuntu-2404' ) }}
Expand Down

0 comments on commit 852a98f

Please sign in to comment.