Merge branch 'pr_597' into 'main'

[GH_PR] Added comment about the workaround for space issues on the GitHub runner (CON-723)

See merge request app-frameworks/esp-matter!476
This commit is contained in:
Hrishikesh Dhayagude
2023-08-31 16:37:50 +08:00
+4 -2
View File
@@ -40,11 +40,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Workaround for disk space issues on the GitHub runner
- run: sudo rm -rf /usr/share/dotnet
- run: sudo rm -rf "$AGENT_TOOLSDIRECTORY"
# Depending on the branch/tag, set TAG_NAME (used when tagging the image). # Depending on the branch/tag, set TAG_NAME (used when tagging the image).
# #
# The following 3 steps cover the alternatives (tag, release branch, main branch): # The following 3 steps cover the alternatives (tag, release branch, main branch):
- run: sudo rm -rf /usr/share/dotnet
- run: sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Set variables (tags) - name: Set variables (tags)
if: ${{ github.ref_type == 'tag' }} if: ${{ github.ref_type == 'tag' }}
run: | run: |