Skip to content

Commit

Permalink
add testing support for arm64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Dec 15, 2023
1 parent eb42967 commit 1d3563e
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
31 changes: 30 additions & 1 deletion .github/workflows/ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- "*"

jobs:
docker:
docker-amd64:
runs-on: ubuntu-latest
steps:
-
Expand Down Expand Up @@ -39,3 +39,32 @@ jobs:
push: false
build-args: |
VERSION=latest
docker-arm64:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/arm64
push: false
build-args: |
VERSION=latest
2 changes: 1 addition & 1 deletion .github/workflows/ghcr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: true
build-args: |
VERSION=${{ github.ref_name }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.0.5.1 (2023-12-15)

* testing with arm64 build

1.0.5 (2023-12-06)

* solc 0.8.23
Expand Down

0 comments on commit 1d3563e

Please sign in to comment.