mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 05:03:10 +02:00
Clear user cache directories on self-hosted GitHub Actions
This commit is contained in:
parent
e256599a15
commit
96ca2423b6
3 changed files with 36 additions and 12 deletions
14
.github/workflows/linux_server_build.yml
vendored
14
.github/workflows/linux_server_build.yml
vendored
|
@ -89,10 +89,13 @@ jobs:
|
|||
container: ${{matrix.image}}
|
||||
|
||||
steps:
|
||||
- name: Clear Working Directory
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- name: Configure Build Environment 1
|
||||
shell: bash
|
||||
|
@ -273,7 +276,10 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.s3_secret_access_key }}
|
||||
run: python3 $GITHUB_WORKSPACE/tools/ci-scripts/upload.py
|
||||
|
||||
- name: Clear Working Directory
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
|
20
.github/workflows/master_build.yml
vendored
20
.github/workflows/master_build.yml
vendored
|
@ -109,11 +109,15 @@ jobs:
|
|||
echo "CLIENT_ONLY=TRUE" >> $GITHUB_ENV
|
||||
echo "INSTALLER=Overte-Interface-master$BUILD_NUMBER-${{ steps.buildenv1.outputs.github_sha_short }}.$INSTALLER_EXT" >> $GITHUB_ENV
|
||||
fi
|
||||
- name: Clear working directory
|
||||
if: startsWith(matrix.os, 'windows')
|
||||
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
working-directory: ${{runner.workspace}}
|
||||
run: rm -rf ./*
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: false
|
||||
|
@ -273,3 +277,11 @@ jobs:
|
|||
# with:
|
||||
# name: symbols
|
||||
# path: ${{runner.workspace}}/${{ steps.buildenv1.outputs.symbols_archive }}
|
||||
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
|
14
.github/workflows/pr_build.yml
vendored
14
.github/workflows/pr_build.yml
vendored
|
@ -155,10 +155,13 @@ jobs:
|
|||
echo "INSTALLER=Overte-Interface-$RELEASE_NUMBER-${GIT_COMMIT_SHORT}.$INSTALLER_EXT" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Clear Working Directory
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -336,7 +339,10 @@ jobs:
|
|||
path: ./build/${{ env.ARTIFACT_PATTERN }}
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Clear Working Directory
|
||||
- name: Clear Working Directories
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
run: |
|
||||
rm -rf ./*
|
||||
rm -rf ~/overte-files
|
||||
rm -rf ~/.cache
|
||||
|
|
Loading…
Reference in a new issue