Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mitch-z committed Jun 5, 2024
2 parents cb88e2e + 8f25fe1 commit 1f35ea1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 32 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,27 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
uploadAssets:
setup-build-publish:
name: Setup, Build and Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout Codes
uses: actions/checkout@v4

- uses: actions/setup-go@v5
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: '^1.21.0' # The Go version to download (if necessary) and use.

- name: Build Binaries
run: |
apt-get install -y gcc-aarch64-linux-gnu
make build-all-binary
tar -czvf build/iris-linux-amd64-${ github.ref }.tar.gz build/iris-linux-amd64
tar -czvf build/iris-linux-arm64-${ github.ref }.tar.gz build/iris-linux-arm64
mv build/iris-windows-amd64.exe build/iris-windows-amd64-${ github.ref }.exe
sudo apt-get install -y gcc-aarch64-linux-gnu
make build-all-binaries
- name: Release
- name: Publish Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: RELEASE.md
files: |
build/iris-linux-amd64-${ github.ref }.tar.gz
build/iris-linux-arm64-${ github.ref }.tar.gz
build/iris-windows-amd64-${ github.ref }.exe
build/iris-linux-amd64
build/iris-linux-arm64
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,9 @@ endif
build-linux: check-evm-chain-id go.sum
LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build

build-all-binary: check-evm-chain-id go.sum
build-all-binaries: check-evm-chain-id go.sum
LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build $(BUILD_FLAGS) -o build/iris-linux-amd64 ./cmd/iris
LEDGER_ENABLED=false GOOS=linux GOARCH=arm64 CGO_ENABLED=1 CC=aarch64-linux-gnu-gcc go build $(BUILD_FLAGS) -o build/iris-linux-arm64 ./cmd/iris
LEDGER_ENABLED=false GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build $(BUILD_FLAGS) -o build/iris-windows-amd64.exe ./cmd/iris

build-contract-tests-hooks:
ifeq ($(OS),Windows_NT)
Expand Down Expand Up @@ -251,4 +250,4 @@ start-rly:
kill-dev:
@echo "Killing nftd and removing previous data"
-@rm -rf ./data
-@killall nftd 2>/dev/null
-@killall nftd 2>/dev/null
17 changes: 1 addition & 16 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,16 +1 @@
## 0.2.0

*July 19th, 2018*

BREAKING CHANGES:

* [tendermint] Upgrade to Tendermint v0.21.0
* [cosmos-sdk] Upgrade to cosmos-sdk v0.19.1-rc1

FEATURES:

* [lcd] code refactor

* [cli] improve sendingand querying the transactions

* [monitor]export data which is collected by Prometheus Server
TODO

0 comments on commit 1f35ea1

Please sign in to comment.