Skip to content

Commit

Permalink
ci: change to docker buildx action
Browse files Browse the repository at this point in the history
(cherry picked from commit c1870c1)
  • Loading branch information
oilbeater committed Oct 17, 2020
1 parent ba40106 commit c42d42f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-arm64-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: arm64

- name: Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1.4.0
uses: docker/setup-buildx-action@v1

- name: Go Build Cache
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-dpdk-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v2

- name: Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1.4.0
uses: docker/setup-buildx-action@v1

- name: Cache Docker layers
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-x86-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v2

- name: Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v3
uses: docker/setup-buildx-action@v1

- name: Go Build Cache
uses: actions/cache@v2
Expand Down

0 comments on commit c42d42f

Please sign in to comment.