Skip to content

Commit 1d3563e

Browse files
committed
add testing support for arm64 build
1 parent eb42967 commit 1d3563e

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

.github/workflows/ci-image.yml

+30-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- "*"
1111

1212
jobs:
13-
docker:
13+
docker-amd64:
1414
runs-on: ubuntu-latest
1515
steps:
1616
-
@@ -39,3 +39,32 @@ jobs:
3939
push: false
4040
build-args: |
4141
VERSION=latest
42+
docker-arm64:
43+
runs-on: ubuntu-latest
44+
steps:
45+
-
46+
name: Checkout
47+
uses: actions/checkout@v3
48+
-
49+
name: Set up QEMU
50+
uses: docker/setup-qemu-action@v2
51+
-
52+
name: Set up Docker Buildx
53+
uses: docker/setup-buildx-action@v2
54+
55+
-
56+
name: Login to GitHub Container Registry
57+
uses: docker/login-action@v2
58+
with:
59+
registry: ghcr.io
60+
username: ${{ github.repository_owner }}
61+
password: ${{ secrets.GITHUB_TOKEN }}
62+
-
63+
name: Build
64+
uses: docker/build-push-action@v3
65+
with:
66+
context: .
67+
platforms: linux/arm64
68+
push: false
69+
build-args: |
70+
VERSION=latest

.github/workflows/ghcr-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: docker/build-push-action@v3
4444
with:
4545
context: .
46-
platforms: linux/amd64
46+
platforms: linux/amd64,linux/arm64
4747
push: true
4848
build-args: |
4949
VERSION=${{ github.ref_name }}

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0.5.1 (2023-12-15)
2+
3+
* testing with arm64 build
4+
15
1.0.5 (2023-12-06)
26

37
* solc 0.8.23

0 commit comments

Comments
 (0)