Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
https://stackoverflow.com/questions/72707357/buildx-failed-with-error-cache-export-feature-is-currently-not-supported-for-d

> ERROR: Cache export is not supported for the docker driver.
> Switch to a different driver, or turn on the containerd image store, and try again
  • Loading branch information
ivan-aksamentov committed Jun 7, 2024
1 parent 49d5a03 commit efd88e9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/builder-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Checkout code"
uses: actions/checkout@v4
with:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
- x86_64-unknown-linux-musl

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Free disk space"
run: |
sudo swapoff -a || true
Expand Down Expand Up @@ -185,6 +188,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Checkout code"
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -231,6 +237,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Checkout code"
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -277,6 +286,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Checkout code"
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -331,6 +343,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Checkout code"
uses: actions/checkout@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: web

on:
push:
branches: ['master', 'staging', 'release']
branches: [ 'master', 'staging', 'release' ]

pull_request:

Expand Down Expand Up @@ -32,6 +32,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3

- name: "Free disk space"
run: |
sudo swapoff -a || true
Expand Down

0 comments on commit efd88e9

Please sign in to comment.