Fix/refactor zboxcore #595
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-zwallet | |
concurrency: | |
group: "build-zwallet-${{ github.ref }}" | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
- staging | |
- sprint* | |
tags: | |
- 'v*.*.*' | |
pull_request: | |
jobs: | |
build-linux: | |
name: Build-linux | |
runs-on: [self-hosted, arc-runner] | |
steps: | |
- name: Install deps | |
run: | | |
sudo apt update | |
sudo apt -y install build-essential nghttp2 libnghttp2-dev libssl-dev | |
- name: Setup gopath and gocache | |
run: | | |
echo "GOPATH=$HOME/go" >> $GITHUB_ENV | |
echo "GOCACHE=$GITHUB_WORKSPACE/.gocache" >> $GITHUB_ENV | |
- name: Setup go 1.21 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' # The Go version to download (if necessary) and use. | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
run: make install | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zwallet-linux | |
path: zwallet | |
retention-days: 5 | |
build-windows: | |
name: Build-windows | |
runs-on: windows-runner | |
defaults: | |
run: | |
shell: msys2 {0} | |
strategy: | |
matrix: | |
sys: [ MINGW64 ] | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.sys}} | |
- name: Install libraries | |
run: | | |
echo 'Y'| pacman -S base-devel git gcc make | |
- name: Install Clang and Go for MINGW64 | |
run: | | |
echo 'y'| pacman -S mingw-w64-x86_64-clang mingw-w64-x86_64-go zip unzip | |
- name: Set environment variables | |
run: | | |
export GOROOT=/mingw64/lib/go | |
export GOPATH=/mingw64 | |
export PATH=$PATH:$GOROOT/bin | |
export PATH=$PATH:/usr/bin/7z | |
# use clang as a default compiler for CGO | |
go env -w "CC=/mingw64/bin/clang.exe" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
run: make install | |
- name: Zip release | |
run: | | |
# download dll files | |
wget https://github.com/0chain/zboxcli/files/11840033/windows.dll.s.zip | |
unzip -o windows.dll.s.zip | |
cp zwallet zwallet.exe | |
zip zwallet-windows.zip zwallet.exe libgcc_s_seh-1.dll libstdc++-6.dll libwinpthread-1.dll | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zwallet-windows.zip | |
path: zwallet-windows.zip | |
retention-days: 5 | |
- name: cleanup workspace | |
run: | | |
rm -Recurse ${{github.workspace}}\* | |
shell: powershell | |
build-macos: | |
name: Build-macos | |
runs-on: macos-runner | |
steps: | |
- name: Setup go 1.21 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' # The Go version to download (if necessary) and use. | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
run: make install | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zwallet-macos | |
path: zwallet | |
retention-days: 5 |