Attach Sui binaries to a release #83
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: Release Binaries | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
sui_tag: | |
description: 'Sui repo tag to build from' | |
type: string | |
required: true | |
env: | |
TAG_NAME: "${{ github.event.inputs.sui_tag || github.ref }}" | |
CARGO_TERM_COLOR: always | |
# Disable incremental compilation. | |
# | |
# Incremental compilation is useful as part of an edit-build-test-edit cycle, | |
# as it lets the compiler avoid recompiling code that hasn't changed. However, | |
# on CI, we're not making small edits; we're almost always building the entire | |
# project from scratch. Thus, incremental compilation on CI actually | |
# introduces *additional* overhead to support making future builds | |
# faster...but no future builds will ever occur in any given CI environment. | |
# | |
# See https://matklad.github.io/2021/09/04/fast-rust-builds.html#ci-workflow | |
# for details. | |
CARGO_INCREMENTAL: 0 | |
# Allow more retries for network requests in cargo (downloading crates) and | |
# rustup (installing toolchains). This should help to reduce flaky CI failures | |
# from transient network timeouts or other issues. | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
# Don't emit giant backtraces in the CI logs. | |
RUST_BACKTRACE: short | |
jobs: | |
release-build: | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
os: [windows-ghcloud] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Clean up tag name | |
shell: bash | |
run: | | |
echo "sui_tag=$(echo ${{ env.TAG_NAME }} | sed s/'refs\/tags\/'//)" >> $GITHUB_ENV | |
- name: Checking out ${{ env.sui_tag }} | |
if: ${{ env.sui_tag != 'main' }} | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.sui_tag }} | |
- name: Install nexttest | |
if: ${{ matrix.os == 'windows-ghcloud' && env.sui_tag != 'main' }} | |
uses: taiki-e/install-action@nextest | |
- name: Setup protoc | |
if: ${{ matrix.os == 'windows-ghcloud' && env.sui_tag != 'main' }} | |
uses: arduino/setup-protoc@v1 | |
# this avoids rate-limiting | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install postgres (Windows) | |
if: ${{ matrix.os == 'windows-ghcloud' && env.sui_tag != 'main' }} | |
shell: bash | |
run: | | |
choco install postgresql12 --force --params '/Password:root' | |
echo "C:\Program Files\PostgreSQL\12\bin" >> $GITHUB_PATH | |
echo "C:\Program Files\PostgreSQL\12\lib" >> $GITHUB_PATH | |
echo "PQ_LIB_DIR=C:\Program Files\PostgreSQL\12\lib" >> $GITHUB_ENV | |
echo "PG_DATABASE_URL=postgres://postgres:root@localhost/" >> $GITHUB_ENV | |
echo "PG_EXAMPLE_DATABASE_URL=postgres://postgres:root@localhost/diesel_example" >> $GITHUB_ENV | |
- name: cargo build (release) for ${{ matrix.os }} platform | |
if: ${{ env.sui_tag != 'main' }} | |
id: build | |
run: | | |
cargo build --release | |
- name: Rename binaries for ubuntu | |
if: ${{ matrix.os == 'ubuntu-ghcloud' && env.sui_tag != 'main' }} | |
shell: bash | |
run: | | |
mv target/release/sui target/release/sui-${{ matrix.os }} | |
echo BIN_SUI="target/release/sui-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv target/release/sui-node target/release/sui-node-${{ matrix.os }} | |
echo BIN_SUI_NODE="target/release/sui-node-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv target/release/sui-tool target/release/sui-tool-${{ matrix.os }} | |
echo BIN_SUI_TOOL="target/release/sui-tool-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv target/release/sui-faucet target/release/sui-faucet-${{ matrix.os }} | |
echo BIN_SUI_FAUCET="target/release/sui-faucet-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv target/release/sui-test-validator target/release/sui-test-validator-${{ matrix.os }} | |
echo BIN_SUI_TEST_VALIDATOR="target/release/sui-test-validator-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv target/release/sui-indexer target/release/sui-indexer-${{ matrix.os }} | |
echo BIN_SUI_INDEXER="target/release/sui-indexer-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
- name: Rename binaries for windows | |
if: ${{ matrix.os == 'windows-ghcloud' && env.sui_tag != 'main' }} | |
shell: bash | |
run: | | |
mv C:/a/sui/sui/crates/sui C:/a/sui/sui/crates/sui-${{ matrix.os }} | |
echo BIN_SUI="crates/sui-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv C:/a/sui/sui/crates/sui-node C:/a/sui/sui/crates/sui-node-${{ matrix.os }} | |
echo BIN_SUI_NODE="crates/sui-node-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv C:/a/sui/sui/crates/sui-tool C:/a/sui/sui/crates/sui-tool-${{ matrix.os }} | |
echo BIN_SUI_TOOL="crates/sui-tool-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv C:/a/sui/sui/crates/sui-faucet C:/a/sui/sui/crates/sui-faucet-${{ matrix.os }} | |
echo BIN_SUI_FAUCET="crates/sui-faucet-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv C:/a/sui/sui/crates/sui-test-validator C:/a/sui/sui/crates/sui-test-validator-${{ matrix.os }} | |
echo BIN_SUI_TEST_VALIDATOR="crates/sui-test-validator-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
mv C:/a/sui/sui/crates/sui-indexer C:/a/sui/sui/crates/sui-indexer-${{ matrix.os }} | |
echo BIN_SUI_INDEXER="C:/a/sui/sui/crates/sui-indexer-${{ matrix.os }}" >> $GITHUB_OUTPUT | |
- name: Upload release artifacts for ${{ matrix.os }} platform | |
if: ${{ env.sui_tag != 'main' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sui-binaries-${{ matrix.os }} | |
path: | | |
${{ steps.build.outputs.BIN_SUI }} | |
${{ steps.build.outputs.BIN_SUI_NODE }} | |
${{ steps.build.outputs.BIN_SUI_TOOL }} | |
${{ steps.build.outputs.BIN_SUI_FAUCET }} | |
${{ steps.build.outputs.BIN_SUI_TEST_VALIDATOR }} | |
${{ steps.build.outputs.BIN_SUI_INDEXER }} | |
- name: Publish binaries for ${{ env.sui_tag }} release for ${{ matrix.os }} platform | |
if: ${{ env.sui_tag != 'main' }} | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.sui_tag }} | |
files: | | |
${{ steps.build.outputs.BIN_SUI }} | |
${{ steps.build.outputs.BIN_SUI_NODE }} | |
${{ steps.build.outputs.BIN_SUI_TOOL }} | |
${{ steps.build.outputs.BIN_SUI_FAUCET }} | |
${{ steps.build.outputs.BIN_SUI_TEST_VALIDATOR }} | |
${{ steps.build.outputs.BIN_SUI_INDEXER }} | |
env: | |
# Have to use a Personal Access Token (PAT), based on https://tinyurl.com/2by2ntdr | |
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_BUILDS_TOKEN }} |