Merge pull request #62 from step-finance/SF-5242-index-in-block #42
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
on: | |
push: | |
tags: | |
- 'v*' | |
pull_request: | |
paths: | |
- '.github/workflows/release.yml' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
release: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
runs-on: ["${{ matrix.os }}"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set rust version | |
run: | | |
source ci/rust-version.sh | |
echo "RUST_STABLE=$rust_stable" | tee -a $GITHUB_ENV | |
- name: Set env vars | |
run: | | |
source ci/env.sh | |
echo "GEYSER_PLUGIN_NAME=$plugin_name" | tee -a $GITHUB_ENV | |
echo "GEYSER_PLUGIN_LIB=lib${plugin_lib_name}" | tee -a $GITHUB_ENV | |
- if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libudev-dev libssl-dev libsasl2-dev libzstd-dev | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Check Solana version | |
run: | | |
echo "CI_TAG=${GITHUB_REF#refs/*/}" >> "$GITHUB_ENV" | |
echo "CI_OS_NAME=linux" >> "$GITHUB_ENV" | |
SOLANA_VERSION="$(./ci/solana-version.sh)" | |
SOLANA_VERSION="v${SOLANA_VERSION#=}" | |
echo "SOLANA_VERSION=$SOLANA_VERSION" >> "$GITHUB_ENV" | |
- name: Build release tarball | |
run: ./ci/create-tarball.sh | |
- name: Rename binaries for ubuntu22 release | |
if: matrix.os == 'ubuntu-22.04' | |
run: | | |
mv ${{ env.GEYSER_PLUGIN_NAME }}-release-x86_64-unknown-linux-gnu.tar.bz2 ${{ env.GEYSER_PLUGIN_NAME }}-release22-x86_64-unknown-linux-gnu.tar.bz2 | |
mv ${{ env.GEYSER_PLUGIN_NAME }}-release-x86_64-unknown-linux-gnu.yml ${{ env.GEYSER_PLUGIN_NAME }}-release22-x86_64-unknown-linux-gnu.yml | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
body: | | |
${{ env.GEYSER_PLUGIN_NAME }} ${{ env.CI_TAG }} | |
solana ${{ env.SOLANA_VERSION }} | |
rust ${{ env.RUST_STABLE }} | |
files: | | |
${{ env.GEYSER_PLUGIN_NAME }}-release* | |