diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index eb139ba8978..087f3d7320a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -102,7 +102,7 @@ jobs: - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-server@v2.3 + uses: ansys/pydpf-actions/install-dpf-server@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index ea037381048..4ac6284f826 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -105,7 +105,7 @@ jobs: - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-server@v2.3 + uses: ansys/pydpf-actions/install-dpf-server@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} diff --git a/.github/workflows/examples_docker.yml b/.github/workflows/examples_docker.yml index d26103aed49..581e3fb4edc 100644 --- a/.github/workflows/examples_docker.yml +++ b/.github/workflows/examples_docker.yml @@ -65,6 +65,10 @@ jobs: os: ["ubuntu-latest"] steps: + + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 - name: "Setup Python" @@ -72,6 +76,10 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 + - name: "Install requirements" run: pip install -r requirements/requirements_build.txt @@ -99,14 +107,21 @@ jobs: run: | pip install dist/${{ steps.wheel.outputs.wheel_name }}[plotting] + - name: "Check disk space" + run: df . -h + - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-docker@v2.3 + uses: ansys/pydpf-actions/install-dpf-docker@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} ANSYS_VERSION : ${{inputs.ANSYS_VERSION}} + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 + - name: "Check licences of packages" uses: ansys/pydpf-actions/check-licenses@v2.3 @@ -124,9 +139,17 @@ jobs: shell: bash run: pip list + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 + - name: "Run examples" shell: bash working-directory: .ci run: | echo on python run_examples.py + + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 diff --git a/.github/workflows/pydpf-post.yml b/.github/workflows/pydpf-post.yml index 4b070e8dfb0..032bda67e41 100644 --- a/.github/workflows/pydpf-post.yml +++ b/.github/workflows/pydpf-post.yml @@ -102,7 +102,7 @@ jobs: - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-server@v2.3 + uses: ansys/pydpf-actions/install-dpf-server@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} diff --git a/.github/workflows/test_docker.yml b/.github/workflows/test_docker.yml index 9bb6630146c..370b0f4464e 100644 --- a/.github/workflows/test_docker.yml +++ b/.github/workflows/test_docker.yml @@ -44,6 +44,10 @@ jobs: os: ["ubuntu-latest"] steps: + + - name: "Check disk space" + run: df . -h + - uses: actions/checkout@v4 - name: "Setup Python" @@ -51,6 +55,9 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: "Check disk space" + run: df . -h + - name: "Install requirements" run: pip install -r requirements/requirements_build.txt @@ -78,14 +85,20 @@ jobs: run: | pip install dist/${{ steps.wheel.outputs.wheel_name }}[plotting] + - name: "Check disk space" + run: df . -h + - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-docker@v2.3 + uses: ansys/pydpf-actions/install-dpf-docker@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} ANSYS_VERSION : ${{inputs.ANSYS_VERSION}} + - name: "Check disk space" + run: df . -h + - name: "Check licences of packages" uses: ansys/pydpf-actions/check-licenses@v2.3 @@ -114,6 +127,9 @@ jobs: echo "COVERAGE=--cov=ansys.dpf.${{env.MODULE}} --cov-report=xml --cov-report=html --log-level=ERROR --cov-append" >> $GITHUB_ENV echo "RERUNS=--reruns 2 --reruns-delay 1" >> $GITHUB_ENV + - name: "Check disk space" + run: df . -h + - name: "Test API" uses: nick-fields/retry@v2 with: @@ -213,3 +229,6 @@ jobs: - name: "Upload coverage to Codecov" uses: codecov/codecov-action@v3 + + - name: "Check disk space" + run: df . -h diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f12d3edeac1..95ca9651534 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -178,14 +178,20 @@ jobs: run: | pip install dist/${{ steps.wheel.outputs.wheel_name }}[plotting] + - name: "Check disk space" + run: df . -h + - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-server@v2.3 + uses: ansys/pydpf-actions/install-dpf-server@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ inputs.standalone_suffix }} ANSYS_VERSION : ${{inputs.ANSYS_VERSION}} + - name: "Check disk space" + run: df . -h + - name: "Check licences of packages" uses: ansys/pydpf-actions/check-licenses@v2.3 diff --git a/.github/workflows/update_operators.yml b/.github/workflows/update_operators.yml index 7ab5918b29a..0e1f3b398e1 100644 --- a/.github/workflows/update_operators.yml +++ b/.github/workflows/update_operators.yml @@ -45,7 +45,7 @@ jobs: - name: "Install DPF" id: set-server-path - uses: ansys/pydpf-actions/install-dpf-server@v2.3 + uses: ansys/pydpf-actions/install-dpf-server@fix/docker_disk_usage_issues with: dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}} standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }}