mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-02-02 22:59:06 +08:00
PR feedback
This commit is contained in:
18
.github/workflows/cloud-runner-integrity.yml
vendored
18
.github/workflows/cloud-runner-integrity.yml
vendored
@@ -76,6 +76,15 @@ jobs:
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'yarn'
|
||||
- name: Clean up disk space before tests
|
||||
run: |
|
||||
# Clean up any leftover cache files from previous runs
|
||||
rm -rf ./cloud-runner-cache/* || true
|
||||
# Clean up system caches and temporary files
|
||||
sudo apt-get clean || true
|
||||
docker system prune -f || true
|
||||
# Show available disk space
|
||||
df -h
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: yarn run test "${{ matrix.test }}" --detectOpenHandles --forceExit --runInBand
|
||||
timeout-minutes: 60
|
||||
@@ -131,6 +140,15 @@ jobs:
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'yarn'
|
||||
- name: Clean up disk space before tests
|
||||
run: |
|
||||
# Clean up any leftover cache files from previous runs
|
||||
rm -rf ./cloud-runner-cache/* || true
|
||||
# Clean up system caches and temporary files
|
||||
sudo apt-get clean || true
|
||||
docker system prune -f || true
|
||||
# Show available disk space
|
||||
df -h
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: yarn run test "${{ matrix.test }}" --detectOpenHandles --forceExit --runInBand
|
||||
timeout-minutes: 60
|
||||
|
||||
Reference in New Issue
Block a user