Skip to content

Commit b546aac

Browse files
Use alpine bash for x86_64 and arm64 archs
1 parent e24d325 commit b546aac

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
shell: alpine.sh --root {0}
8181
run: apk add git cmake gcc g++ make go
8282
- name: Build & Test
83+
shell: alpine.sh --root {0}
8384
run: |
8485
make gocore
8586
make test

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
docker buildx create --use
2828
docker buildx build \
29-
--platform linux/amd64,linux/arm64,linux/riscv64 \
29+
--platform linux/amd64,linux/arm64 \
3030
--tag ghcr.io/core-coin/go-core:${{ steps.version.outputs.tag }} \
3131
--tag ghcr.io/core-coin/go-core:latest \
3232
--push .

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/cloudflare/cloudflare-go v0.10.2
1212
github.com/core-coin/ed448 v1.0.2
1313
github.com/core-coin/go-goldilocks v1.0.17
14-
github.com/core-coin/go-randomy v0.0.20
14+
github.com/core-coin/go-randomy v0.0.21
1515
github.com/core-coin/uint256 v1.0.0
1616
github.com/davecgh/go-spew v1.1.1
1717
github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ github.com/core-coin/ed448 v1.0.2 h1:t9fwBGw8i3HN8cISUlt4GA3TpYPNPR6xD09qtCuoyFA
8080
github.com/core-coin/ed448 v1.0.2/go.mod h1:/S7hge2XKh2GI/dFp551tIsXDGGD6OU/CSRId+/OjII=
8181
github.com/core-coin/go-goldilocks v1.0.17 h1:NLXGS0pbwrTfWo6ocPUxiTCMPIELVq9FtYdlrpJrm7U=
8282
github.com/core-coin/go-goldilocks v1.0.17/go.mod h1:3GiDQX2tf7aIhnQoyL+N3pwU3a3IUuCeaFdOOFXCF/8=
83-
github.com/core-coin/go-randomy v0.0.20 h1:ucbQW+ZMGH3PP6lqJ+fc3MNH9dlQVJpvsQTux4vhlRQ=
84-
github.com/core-coin/go-randomy v0.0.20/go.mod h1:gSn1tIjmiJC7c6GWbBXRlb75xvrruJZu3c/gDehBLCU=
83+
github.com/core-coin/go-randomy v0.0.21 h1:ImaAldP7HSEwWbC7+AMN3QzpxUN2MPp2MyZPdxtA6Vc=
84+
github.com/core-coin/go-randomy v0.0.21/go.mod h1:gSn1tIjmiJC7c6GWbBXRlb75xvrruJZu3c/gDehBLCU=
8585
github.com/core-coin/uint256 v1.0.0 h1:AzgINl9YCnYDRJBlqFlWsVb4sr814LcvPAvkPyVBFVo=
8686
github.com/core-coin/uint256 v1.0.0/go.mod h1:rrinB/+X6+31MswTK2xwoFGi8i75SH1ILSsRSoOFa1I=
8787
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=

0 commit comments

Comments
 (0)