From ccff19443b6b34c20df4935489877981db6c9d09 Mon Sep 17 00:00:00 2001 From: Vojtech Polasek Date: Thu, 25 Jan 2024 15:15:13 +0100 Subject: [PATCH] remove the task which deletes artifacts from automatus GH workflows we are experiencing problems after upgrade of delete-artifact action to version 4 and they are degrading our ability to use CI efficiently. This will be probably only temporary fix before we figure out what is the problem with the GH action and its usage in our repository. At the same time removing this task should not pose any serious problems, old artifacts are deleted after 90 days. --- .github/workflows/automatus-cs8.yaml | 6 ------ .github/workflows/automatus-cs9.yaml | 6 ------ .github/workflows/automatus-sle15.yaml | 6 ------ .github/workflows/automatus.yaml | 6 ------ 4 files changed, 24 deletions(-) diff --git a/.github/workflows/automatus-cs8.yaml b/.github/workflows/automatus-cs8.yaml index 0af1ab1df12..18ea3039fad 100644 --- a/.github/workflows/automatus-cs8.yaml +++ b/.github/workflows/automatus-cs8.yaml @@ -168,12 +168,6 @@ jobs: with: name: logs_ansible path: logs_ansible/ - - name: Delete datastream artifact - if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} - uses: geekyeggo/delete-artifact@v4 - with: - name: ${{ env.DATASTREAM }} - useGlob: false - name: Fail in case of ERROR present in logs_bash/test_suite.log or logs_ansible/test_suite.log if: ${{ (steps.check_results_bash.outcome == 'success' || steps.check_results_ansible.outcome == 'success') && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} run: | diff --git a/.github/workflows/automatus-cs9.yaml b/.github/workflows/automatus-cs9.yaml index f87a7659077..b97a7363a5b 100644 --- a/.github/workflows/automatus-cs9.yaml +++ b/.github/workflows/automatus-cs9.yaml @@ -168,12 +168,6 @@ jobs: with: name: logs_ansible path: logs_ansible/ - - name: Delete datastream artifact - if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} - uses: geekyeggo/delete-artifact@v4 - with: - name: ${{ env.DATASTREAM }} - useGlob: false - name: Fail in case of ERROR present in logs_bash/test_suite.log or logs_ansible/test_suite.log if: ${{ (steps.check_results_bash.outcome == 'success' || steps.check_results_ansible.outcome == 'success') && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} run: | diff --git a/.github/workflows/automatus-sle15.yaml b/.github/workflows/automatus-sle15.yaml index 1c6fc748928..6594513c0e5 100644 --- a/.github/workflows/automatus-sle15.yaml +++ b/.github/workflows/automatus-sle15.yaml @@ -176,12 +176,6 @@ jobs: with: name: logs_ansible path: logs_ansible/ - - name: Delete datastream artifact - if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} - uses: geekyeggo/delete-artifact@v4 - with: - name: ${{ env.DATASTREAM }} - useGlob: false - name: Fail in case of ERROR present in logs_bash/test_suite.log or logs_ansible/test_suite.log if: ${{ (steps.check_results_bash.outcome == 'success' || steps.check_results_ansible.outcome == 'success') && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} run: | diff --git a/.github/workflows/automatus.yaml b/.github/workflows/automatus.yaml index 3fdbaab7d6b..92a796461e7 100644 --- a/.github/workflows/automatus.yaml +++ b/.github/workflows/automatus.yaml @@ -166,12 +166,6 @@ jobs: with: name: logs_ansible path: logs_ansible/ - - name: Delete datastream artifact - if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} - uses: geekyeggo/delete-artifact@v4 - with: - name: ssg-${{steps.product.outputs.prop}}-ds.xml - useGlob: false - name: Fail in case of ERROR present in logs_bash/test_suite.log or logs_ansible/test_suite.log if: ${{ (steps.check_results_bash.outcome == 'success' || steps.check_results_ansible.outcome == 'success') && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }} run: |