Skip to content

Commit

Permalink
chore(ci): pre-build FVT docker image
Browse files Browse the repository at this point in the history
Use the GHA cache to store the docker image between runs

Signed-off-by: Dominic Evans <[email protected]>
  • Loading branch information
dnwe committed Aug 9, 2023
1 parent e31a540 commit fa7db9a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/fvt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ jobs:
KAFKA_VERSION: ${{ matrix.kafka-version }}
steps:
- uses: actions/checkout@v3
- name: Setup Docker
uses: docker/setup-buildx-action@v2
id: buildx
- name: Build FVT Docker Image
uses: docker/bake-action@master
with:
builder: ${{ steps.buildx.outputs.name }}
files: docker-compose.yml
load: true
set: |
*.cache-from=type=gha,scope=${{ github.workflow }}
*.cache-to=type=gha,scope=${{ github.workflow }},mode=max
- name: Setup Go
uses: actions/setup-go@v4
with:
Expand Down

0 comments on commit fa7db9a

Please sign in to comment.