mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 00:42:46 +02:00
Clean up working directory on self-hosted runners to save disk space.
This commit is contained in:
parent
5c3fb7ae8e
commit
beb036a4da
1 changed files with 14 additions and 0 deletions
14
.github/workflows/pr_build.yml
vendored
14
.github/workflows/pr_build.yml
vendored
|
@ -334,6 +334,13 @@ jobs:
|
||||||
fi
|
fi
|
||||||
$PYTHON_EXEC "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"
|
$PYTHON_EXEC "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"
|
||||||
|
|
||||||
|
# Frees up memory on the self-hosted runner
|
||||||
|
- name: Clear Working Directory
|
||||||
|
if: contains(matrix.os, 'self-hosted')
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{runner.workspace}}
|
||||||
|
run: rm -rf ./*
|
||||||
|
|
||||||
|
|
||||||
build_docker_server:
|
build_docker_server:
|
||||||
name: "${{matrix.os}}, Debian Docker"
|
name: "${{matrix.os}}, Debian Docker"
|
||||||
|
@ -428,3 +435,10 @@ jobs:
|
||||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||||
run: |
|
run: |
|
||||||
python3 "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"
|
python3 "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"
|
||||||
|
|
||||||
|
# Frees up memory on the self-hosted runner
|
||||||
|
- name: Clear Working Directory
|
||||||
|
if: contains(matrix.os, 'self-hosted')
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{runner.workspace}}
|
||||||
|
run: rm -rf ./*
|
||||||
|
|
Loading…
Reference in a new issue