Skip to content

Commit

Permalink
Stop support for linux/arm(32bit) (#431)
Browse files Browse the repository at this point in the history
* fix : remove arm32

* fix : remove related to linux/arm32
  • Loading branch information
da1suk8 authored Jun 13, 2022
1 parent 3f055cf commit 382a443
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ jobs:
gcc: "aarch64-linux-gnu-gcc"
package: "g++-aarch64-linux-gnu"
host: "aarch64-linux-gnu"
- goarch: "arm"
gcc: "arm-linux-gnueabi-gcc"
package: "g++-arm-linux-gnueabi"
host: "arm-linux-gnueabi"
timeout-minutes: 5
steps:
- run: sudo apt update && sudo apt install -y ${{ matrix.package }} qemu-user-binfmt
Expand Down
1 change: 0 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ builds:
- windows
goarch:
- amd64
- arm
- arm64

checksum:
Expand Down
2 changes: 0 additions & 2 deletions crypto/vrf/internal/vrf/vrf.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ package vrf
#cgo linux,amd64 LDFLAGS: -L./sodium/linux_amd64/lib -lsodium
#cgo linux,arm64 CFLAGS: -I./sodium/linux_arm64/include
#cgo linux,arm64 LDFLAGS: -L./sodium/linux_arm64/lib -lsodium
#cgo linux,arm CFLAGS: -I./sodium/linux_arm/include
#cgo linux,arm LDFLAGS: -L./sodium/linux_arm/lib -lsodium
#cgo windows,amd64 CFLAGS: -I./sodium/windows_amd64/include
#cgo windows,amd64 LDFLAGS: -L./sodium/windows_amd64/lib -lsodium
#include "sodium.h"
Expand Down
2 changes: 1 addition & 1 deletion scripts/dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ GIT_IMPORT="github.com/line/ostracon/version"
# Determine the arch/os combos we're building for
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
XC_OS=${XC_OS:-"solaris darwin freebsd linux windows"}
XC_EXCLUDE=${XC_EXCLUDE:-" darwin/arm solaris/amd64 solaris/386 solaris/arm freebsd/amd64 windows/arm "}
XC_EXCLUDE=${XC_EXCLUDE:-" darwin/arm solaris/amd64 solaris/386 solaris/arm freebsd/amd64 windows/arm linux/arm "}

# Make sure build tools are available.
#make tools # XXX Should remove "make tools": https://github.com/line/ostracon/commit/c6e0d20d4bf062921fcc1eb5b2399447a7d2226e#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52
Expand Down

0 comments on commit 382a443

Please sign in to comment.