Skip to content

Commit

Permalink
use local patches to build cache (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Mar 4, 2024
1 parent d74c54e commit ca6f396
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/update-cache.yml
Expand Up @@ -20,6 +20,20 @@ jobs:
with:
repository: 'bevyengine/bevy'

- name: Checkout patches
uses: actions/checkout@v4
with:
path: 'runner-patches'

- name: Apply patches
shell: pwsh
run: |
Get-ChildItem "runner-patches/patches" -Filter *.patch |
Foreach-Object {
Write-Output "Processing $($_.FullName)"
git apply --ignore-whitespace $($_.FullName)
}
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable

Expand Down

0 comments on commit ca6f396

Please sign in to comment.