mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
Updating github actions used
This commit is contained in:
parent
ac14d1d0fe
commit
852a98fce4
1 changed files with 6 additions and 1 deletions
7
.github/workflows/test-linux.yml
vendored
7
.github/workflows/test-linux.yml
vendored
|
@ -89,10 +89,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
/usr/bin/docker start ${{ github.run_id }}_salt-test
|
/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 }}"
|
- 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' ) }}
|
if: ${{ ( inputs.distro-slug == 'debian-11' ) || ( inputs.distro-slug == 'debian-12' ) || ( inputs.distro-slug == 'debian-13' ) || ( inputs.distro-slug == 'ubuntu-2404' ) }}
|
||||||
run: |
|
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 }}"
|
- 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' ) }}
|
if: ${{ ( inputs.distro-slug != 'debian-11' ) && ( inputs.distro-slug != 'debian-12' ) && ( inputs.distro-slug != 'debian-13' ) && ( inputs.distro-slug != 'ubuntu-2404' ) }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue