mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add free space checks
This commit is contained in:
parent
1fbb0ab2ea
commit
210603f915
1 changed files with 11 additions and 0 deletions
11
.github/workflows/test-action.yml
vendored
11
.github/workflows/test-action.yml
vendored
|
@ -114,6 +114,7 @@ jobs:
|
|||
cd artifacts
|
||||
tar xvf ${{ inputs.package-name }}-${{ inputs.salt-version }}-onedir-${{ matrix.platform }}-${{ matrix.arch }}.tar.xz
|
||||
|
||||
|
||||
- name: "Pull container ${{ matrix.container }}"
|
||||
run: |
|
||||
docker pull ${{ matrix.container }}
|
||||
|
@ -160,6 +161,16 @@ jobs:
|
|||
docker exec -e SKIP_REQUIREMENTS_INSTALL=1 -e PRINT_SYSTEM_INFO_ONLY=1 ${{ github.run_id}}_salt-test \
|
||||
python3 -m nox --force-color -e ${{ inputs.nox-session }} -- ${{ matrix.tests-chunk }}
|
||||
|
||||
- name: Free Space on Host
|
||||
shell: bash
|
||||
run: |
|
||||
df -h
|
||||
|
||||
- name: Free Space on Container
|
||||
shell: bash
|
||||
run: |
|
||||
docker exec ${{ github.run_id}}_salt-test df -h
|
||||
|
||||
- name: Run Changed Tests
|
||||
id: run-fast-changed-tests
|
||||
if: ${{ fromJSON(inputs.testrun)['type'] != 'full' }}
|
||||
|
|
Loading…
Add table
Reference in a new issue