-
Notifications
You must be signed in to change notification settings - Fork 2
142 lines (123 loc) · 4.47 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths:
- '.github/workflows/release.yml'
push:
branches:
- 'master'
- 'v1.16'
- 'v1.17'
- 'v1.18'
tags:
- 'v*'
- 'tools-v*'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
release:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ["${{ matrix.os }}"]
steps:
- uses: actions/checkout@v4
- 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
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_STABLE }}
override: true
profile: minimal
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target
key: ${{ matrix.os }}-cargo-${{ hashFiles('rust-toolchain.toml') }}-${{ hashFiles('**/Cargo.lock') }}-0001
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libsasl2-dev protobuf-compiler
- name: Check Solana version
run: |
echo "CI_TAG=$(ci/getTag.sh)" >> "$GITHUB_ENV"
echo "CI_OS_NAME=linux" >> "$GITHUB_ENV"
SOLANA_VERSION="$(./ci/solana-version.sh)"
echo "SOLANA_VERSION=$SOLANA_VERSION" >> "$GITHUB_ENV"
- name: Create build name
run: |
echo "BUILD_NAME=$CI_TAG" >> "$GITHUB_ENV"
- name: Build release tarball
run: ./ci/create-tarball.sh
- name: Deleteing directories to avoid upload conflict
run: |
rm -rf \
target/release/client.d \
target/release/config-check.d \
target/release/grpc-google-pubsub.d \
target/release/grpc-kafka.d \
target/release/grpc-scylladb.d
- name: Remove debug information
run: |
strip \
target/release/client \
target/release/config-check \
target/release/grpc-google-pubsub \
target/release/grpc-kafka \
target/release/grpc-scylladb
- name: Rename binaries
run: |
mv target/release/client target/release/client-${{ matrix.os }}
mv target/release/config-check target/release/config-check-${{ matrix.os }}
mv target/release/grpc-google-pubsub target/release/grpc-google-pubsub-${{ matrix.os }}
mv target/release/grpc-kafka target/release/grpc-kafka-${{ matrix.os }}
mv target/release/grpc-scylladb target/release/grpc-scylladb-${{ matrix.os }}
- name: Rename lib 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
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.BUILD_NAME }}
body: |
${{ env.GEYSER_PLUGIN_NAME }} ${{ env.CI_TAG }}
solana ${{ env.SOLANA_VERSION }}
rust ${{ env.RUST_STABLE }}
files: |
${{ env.GEYSER_PLUGIN_NAME }}-release*
yellowstone-grpc-proto/proto/*.proto
target/release/client*
target/release/config-check*
target/release/grpc-google-pubsub*
target/release/grpc-kafka*
target/release/grpc-scylladb*
- uses: actions/upload-artifact@v4
with:
name: yellowstone-grpc-${{ github.sha }}-${{ matrix.os }}
path: |
${{ env.GEYSER_PLUGIN_NAME }}-release*
yellowstone-grpc-proto/proto/*.proto
target/release/client*
target/release/config-check*
target/release/grpc-google-pubsub*
target/release/grpc-kafka*
target/release/grpc-scylladb*