Skip to content

Commit

Permalink
Add a workflow that can be use to cache BuildIt builds
Browse files Browse the repository at this point in the history
  • Loading branch information
emilevr committed Oct 30, 2023
1 parent e0ee72a commit 543abbb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cache_buildit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Cache BuildIt
on:
- workflow_dispatch
jobs:
cache:
name: 'Cache on ${{ matrix.runs-on }}'
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/detect-and-install-rust-toolchain

- uses: ./.github/actions/install-buildit

0 comments on commit 543abbb

Please sign in to comment.