2022-07-05 06:14:21 +03:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Publish `v1.2.3` tags as releases.
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Release
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
go-version: [1.17.x]
|
2022-12-22 11:47:43 +03:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2022-07-05 06:14:21 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/checkout@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
|
|
|
|
- name: Install Go
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/setup-go@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
2022-12-22 11:47:43 +03:00
|
|
|
- uses: actions/cache@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
# In order:
|
|
|
|
# * Module download cache
|
|
|
|
# * Build cache (Linux)
|
|
|
|
# * Build cache (Mac)
|
|
|
|
# * Build cache (Windows)
|
|
|
|
path: |
|
|
|
|
~/go/pkg/mod
|
|
|
|
~/.cache/go-build
|
|
|
|
~/Library/Caches/go-build
|
2022-12-22 11:47:43 +03:00
|
|
|
~\AppData\Local\go-build
|
2022-07-05 06:14:21 +03:00
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2022-12-22 11:47:43 +03:00
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
# ==============================
|
|
|
|
# Linux/Macos/Windows Build
|
|
|
|
# ==============================
|
|
|
|
|
|
|
|
- name: Build Binary for ${{matrix.os}}
|
|
|
|
run: make geth
|
|
|
|
|
|
|
|
# ==============================
|
2022-09-26 12:31:16 +03:00
|
|
|
# Cross Compile for ARM
|
|
|
|
# ==============================
|
|
|
|
|
|
|
|
- name: Build Binary for ARM
|
2022-12-22 11:47:43 +03:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-09-26 12:31:16 +03:00
|
|
|
run: |
|
2022-11-28 17:38:59 +03:00
|
|
|
make geth-linux-arm
|
2022-09-26 12:31:16 +03:00
|
|
|
# ==============================
|
2022-07-05 06:14:21 +03:00
|
|
|
# Upload artifacts
|
|
|
|
# ==============================
|
|
|
|
|
|
|
|
- name: Upload Linux Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: linux
|
|
|
|
path: ./build/bin/geth
|
|
|
|
|
|
|
|
- name: Upload MacOS Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'macos-latest'
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: macos
|
|
|
|
path: ./build/bin/geth
|
|
|
|
|
|
|
|
- name: Upload Windows Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'windows-latest'
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: windows
|
|
|
|
path: ./build/bin/geth.exe
|
|
|
|
|
2022-09-26 12:31:16 +03:00
|
|
|
- name: Upload ARM-5 Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm5
|
2022-11-28 17:38:59 +03:00
|
|
|
path: ./build/bin/geth-linux-arm-5
|
2022-09-26 12:31:16 +03:00
|
|
|
|
|
|
|
- name: Upload ARM-6 Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm6
|
2022-11-28 17:38:59 +03:00
|
|
|
path: ./build/bin/geth-linux-arm-6
|
2022-09-26 12:31:16 +03:00
|
|
|
|
|
|
|
- name: Upload ARM-7 Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm7
|
2022-11-28 17:38:59 +03:00
|
|
|
path: ./build/bin/geth-linux-arm-7
|
2022-09-26 12:31:16 +03:00
|
|
|
|
|
|
|
- name: Upload ARM-64 Build
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm64
|
2022-11-28 17:38:59 +03:00
|
|
|
path: ./build/bin/geth-linux-arm64
|
2022-09-26 12:31:16 +03:00
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
needs: build
|
2022-12-22 11:47:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-05 06:14:21 +03:00
|
|
|
steps:
|
|
|
|
- name: Set Env
|
|
|
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Checkout Code
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/checkout@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
|
|
|
|
# ==============================
|
|
|
|
# Download artifacts
|
|
|
|
# ==============================
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: linux
|
|
|
|
path: ./linux
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: macos
|
|
|
|
path: ./macos
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-07-05 06:14:21 +03:00
|
|
|
with:
|
|
|
|
name: windows
|
|
|
|
path: ./windows
|
|
|
|
|
2022-09-26 12:31:16 +03:00
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm5
|
|
|
|
path: ./arm5
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm6
|
|
|
|
path: ./arm6
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm7
|
|
|
|
path: ./arm7
|
|
|
|
|
|
|
|
- name: Download Artifacts
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-09-26 12:31:16 +03:00
|
|
|
with:
|
|
|
|
name: arm64
|
|
|
|
path: ./arm64
|
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
- name: Download Config File
|
|
|
|
run: |
|
|
|
|
. ./.github/release.env
|
|
|
|
echo "mainnet.zip url: $MAINNET_FILE_URL"
|
|
|
|
echo "testnet.zip url: $TESTNET_FILE_URL"
|
|
|
|
curl -L $MAINNET_FILE_URL -o ./mainnet.zip
|
|
|
|
curl -L $TESTNET_FILE_URL -o ./testnet.zip
|
|
|
|
# ==============================
|
|
|
|
# Create release
|
|
|
|
# ==============================
|
|
|
|
- name: Generate Change Log
|
|
|
|
id: changelog
|
|
|
|
run: |
|
|
|
|
chmod 755 ./.github/generate_change_log.sh
|
|
|
|
CHANGELOG=$(./.github/generate_change_log.sh ${{ env.RELEASE_VERSION}})
|
|
|
|
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
|
|
|
|
echo "$CHANGELOG" >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|
2022-12-22 11:47:43 +03:00
|
|
|
|
|
|
|
# Rename assets
|
|
|
|
- run: |
|
|
|
|
mv ./linux/geth ./linux/geth_linux
|
|
|
|
mv ./macos/geth ./macos/geth_macos
|
|
|
|
mv ./windows/geth.exe ./windows/geth_windows.exe
|
|
|
|
|
2022-07-05 06:14:21 +03:00
|
|
|
- name: Create Release
|
2022-12-22 11:47:43 +03:00
|
|
|
uses: softprops/action-gh-release@v1
|
2022-07-05 06:14:21 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
|
|
|
with:
|
2022-12-22 11:47:43 +03:00
|
|
|
tag_name: ${{ env.RELEASE_VERSION}}
|
|
|
|
release_name: ${{ env.RELEASE_VERSION}}
|
2022-07-05 06:14:21 +03:00
|
|
|
body: |
|
|
|
|
${{ env.CHANGELOG }}
|
|
|
|
draft: false
|
|
|
|
prerelease: false
|
2022-12-22 11:47:43 +03:00
|
|
|
files: |
|
|
|
|
./mainnet.zip
|
|
|
|
./testnet.zip
|
|
|
|
./linux/geth_linux
|
|
|
|
./macos/geth_macos
|
|
|
|
./windows/geth_windows.exe
|
|
|
|
./arm5/geth-linux-arm-5
|
|
|
|
./arm6/geth-linux-arm-6
|
|
|
|
./arm7/geth-linux-arm-7
|
|
|
|
./arm64/geth-linux-arm64
|