Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
ci: cache built disk
Browse files Browse the repository at this point in the history
  • Loading branch information
llenotre committed Jun 9, 2024
1 parent 62f5c23 commit 722616f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Build integration tests image"
on: [push]
on: [push, workflow_call]
jobs:
build:
runs-on: [self-hosted, linux]
Expand All @@ -14,4 +14,12 @@ jobs:
needs: build
steps:
- name: Check format
run: cargo fmt --check
run: cargo fmt --check
cache:
runs-on: [self-hosted, linux]
needs: build
steps:
- uses: actions/cache@v4
with:
path: disk
key: integration-tests

0 comments on commit 722616f

Please sign in to comment.