Kaspa on Rust version 0.1.7 (mempool dust patch; deploy fix) #7
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 and upload assets | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# Build gnu-linux on ubuntu-18.04 and musl on ubuntu latest | |
# os: [ ubuntu-18.04, ubuntu-latest, windows-latest, macos-latest ] | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
name: Building, ${{ matrix.os }} | |
steps: | |
- name: Fix CRLF on Windows | |
if: runner.os == 'Windows' | |
run: git config --global core.autocrlf false | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install zig on linux | |
if: runner.os == 'Linux' | |
uses: goto-bus-stop/setup-zig@v2 # needed for cargo-zigbuild | |
- name: Build on Linux | |
if: runner.os == 'Linux' | |
# We're using musl to make the binaries statically linked and portable | |
run: | | |
cargo install cargo-zigbuild | |
cargo --verbose zigbuild --bin kaspad --bin simpa --bin rothschild --release --target x86_64-unknown-linux-gnu.2.27 # Use an older glibc version | |
mkdir bin || true | |
cp target/x86_64-unknown-linux-gnu/release/kaspad bin/ | |
cp target/x86_64-unknown-linux-gnu/release/simpa bin/ | |
cp target/x86_64-unknown-linux-gnu/release/rothschild bin/ | |
archive="bin/rusty-kaspa-${{ github.event.release.tag_name }}-linux-gnu-amd64.zip" | |
asset_name="rusty-kaspa-${{ github.event.release.tag_name }}-linux-gnu-amd64.zip" | |
zip -r "${archive}" ./bin/* | |
echo "archive=${archive}" >> $GITHUB_ENV | |
echo "asset_name=${asset_name}" >> $GITHUB_ENV | |
- name: Build on Windows | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
cargo build --bin kaspad --release | |
cargo build --bin simpa --release | |
cargo build --bin rothschild --release | |
mkdir bin || true | |
cp target/release/kaspad.exe bin/ | |
cp target/release/simpa.exe bin/ | |
cp target/release/rothschild.exe bin/ | |
archive="bin/rusty-kaspa-${{ github.event.release.tag_name }}-win64.zip" | |
asset_name="rusty-kaspa-${{ github.event.release.tag_name }}-win64.zip" | |
powershell "Compress-Archive bin/* \"${archive}\"" | |
echo "archive=${archive}" >> $GITHUB_ENV | |
echo "asset_name=${asset_name}" >> $GITHUB_ENV | |
- name: Build on MacOS | |
if: runner.os == 'macOS' | |
run: | | |
cargo build --bin kaspad --release | |
cargo build --bin simpa --release | |
cargo build --bin rothschild --release | |
mkdir bin || true | |
cp target/release/kaspad bin/ | |
cp target/release/simpa bin/ | |
cp target/release/rothschild bin/ | |
archive="bin/rusty-kaspa-${{ github.event.release.tag_name }}-osx.zip" | |
asset_name="rusty-kaspa-${{ github.event.release.tag_name }}-osx.zip" | |
zip -r "${archive}" ./bin/* | |
echo "archive=${archive}" >> $GITHUB_ENV | |
echo "asset_name=${asset_name}" >> $GITHUB_ENV | |
- name: Upload release asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: "./${{ env.archive }}" | |
asset_name: "${{ env.asset_name }}" | |
asset_content_type: application/zip |