mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Clear working directory on self hosted aarch64 runner.
This commit is contained in:
parent
ede6a169e0
commit
db8e69da9e
2 changed files with 16 additions and 2 deletions
10
.github/workflows/linux_server_build.yml
vendored
10
.github/workflows/linux_server_build.yml
vendored
|
@ -89,6 +89,11 @@ jobs:
|
|||
container: ${{matrix.image}}
|
||||
|
||||
steps:
|
||||
- name: Clear Working Directory
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
|
||||
- name: Configure Build Environment 1
|
||||
shell: bash
|
||||
run: |
|
||||
|
@ -267,3 +272,8 @@ jobs:
|
|||
AWS_ACCESS_KEY_ID: ${{ secrets.s3_access_key_id }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.s3_secret_access_key }}
|
||||
run: python3 $GITHUB_WORKSPACE/tools/ci-scripts/upload.py
|
||||
|
||||
- name: Clear Working Directory
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
|
|
8
.github/workflows/pr_build.yml
vendored
8
.github/workflows/pr_build.yml
vendored
|
@ -156,9 +156,8 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: Clear Working Directory
|
||||
if: startsWith(matrix.os, 'windows') || contains(matrix.os, 'self-hosted')
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
working-directory: ${{runner.workspace}}
|
||||
run: rm -rf ./*
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -336,3 +335,8 @@ jobs:
|
|||
name: ${{ env.ARTIFACT_PATTERN }}
|
||||
path: ./build/${{ env.ARTIFACT_PATTERN }}
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Clear Working Directory
|
||||
if: contains(matrix.runner, 'linux_aarch64')
|
||||
shell: bash
|
||||
run: rm -rf ./*
|
||||
|
|
Loading…
Reference in a new issue