-
Notifications
You must be signed in to change notification settings - Fork 80
173 lines (145 loc) · 4.97 KB
/
create-proposal.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
name: Create Proposal
# Run on manual dispatch.
on:
workflow_dispatch:
inputs:
program:
description: Program
required: true
default: token-metadata
type: choice
options:
- token-metadata
cluster:
description: Cluster environment
required: true
default: devnet
type: choice
options:
- devnet
- mainnet-beta
bump:
description: Version bump
required: true
default: patch
type: choice
options:
- patch
- minor
- major
proposal_description:
description: Proposal description
required: true
type: string
env:
CACHE: true
jobs:
build_programs:
name: Programs
uses: ./.github/workflows/build-programs.yml
secrets: inherit
test_programs:
name: Programs
needs: build_programs
uses: ./.github/workflows/test-programs.yml
secrets: inherit
with:
program_matrix: '["${{ inputs.program }}"]'
test_rust_client:
name: Rust Client
needs: build_programs
uses: ./.github/workflows/test-rust-client.yml
secrets: inherit
test_js_client:
name: JS client
needs: [test_programs, test_rust_client]
uses: ./.github/workflows/test-js-client.yml
secrets: inherit
create_proposal:
name: Program / Proposal
runs-on: ubuntu-latest
needs: test_js_client
permissions:
contents: write
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.SVC_TOKEN }}
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV
- name: Install Rust
uses: metaplex-foundation/actions/install-rust@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Install Solana
uses: metaplex-foundation/actions/install-solana@v1
with:
version: ${{ env.SOLANA_CLI_VERSION }}
cache: ${{ env.CACHE }}
- name: Install Themis
uses: ./.github/actions/install-themis
- name: Set RPC
run: |
if [ "${{ inputs.cluster }}" == "devnet" ]; then
echo RPC=${{ secrets.DEVNET_RPC }} >> $GITHUB_ENV
echo MINT_TYPE="council" >> $GITHUB_ENV
elif [ "${{ inputs.cluster }}" == "mainnet-beta" ]; then
echo RPC=${{ secrets.MAINNET_RPC }} >> $GITHUB_ENV
echo MINT_TYPE="member" >> $GITHUB_ENV
else
echo "Invalid cluster"
exit 1
fi
- name: Determine program version
run: |
IDL_NAME=`echo "${{ inputs.program }}" | tr - _`
VERSION=`jq '.version' ./idls/${IDL_NAME}.json | sed 's/"//g'`
MAJOR=`echo ${VERSION} | cut -d. -f1`
MINOR=`echo ${VERSION} | cut -d. -f2`
PATCH=`echo ${VERSION} | cut -d. -f3`
if [ "${{ inputs.bump }}" == "major" ]; then
MAJOR=$((MAJOR + 1))
MINOR=0
PATCH=0
elif [ "${{ inputs.bump }}" == "minor" ]; then
MINOR=$((MINOR + 1))
PATCH=0
else
PATCH=$((PATCH + 1))
fi
echo PROGRAM_VERSION="${MAJOR}.${MINOR}.${PATCH}" >> $GITHUB_ENV
echo PROGRAM_NAME="token_metadata" >> $GITHUB_ENV
- name: Download program builds
uses: actions/download-artifact@v4
with:
name: program-builds
- name: Create proposal
run: |
echo "Deploying ${{ inputs.program }} to ${{ inputs.cluster }}"
echo "Creating program buffer..."
echo ${{ secrets.BOT_KEY }} > ./submitter-key.json
solana config set -k ./submitter-key.json > /dev/null 2>&1
solana config set --url ${{ env.RPC }} > /dev/null 2>&1
BUFFER=$(solana program write-buffer --max-sign-attempts 100 --use-rpc ./programs/.bin/${{ env.PROGRAM_NAME }}.so | awk '{print $2}')
echo "Buffer: $BUFFER"
solana program set-buffer-authority --new-buffer-authority ${{ env.GOVERNANCE_ID }} $BUFFER
RUST_LOG=debug themis upgrade-program \
--source-buffer $BUFFER \
--name "Deploy ${{ inputs.program }}@v${{ env.PROGRAM_VERSION }}" \
--mint-type ${{ env.MINT_TYPE }} \
--options ["Approve"] \
--description "${{ inputs.proposal_description }}"
rm submitter-key.json
GIT_TAG="proposal(v${{ env.PROGRAM_VERSION }}@${{ inputs.cluster }})"
DELETE_TAG=`git tag | grep '${GIT_TAG}' | wc -l | awk '{print $1}'`
if [ ${DELETE_TAG} -gt 1 ]; then
git push --delete origin -d $GIT_TAG 2> /dev/null
echo "Removed git tag: '$GIT_TAG'"
fi
- name: Tag the proposal commit
run: |
echo "Tagging the proposal for ${{ inputs.program }} to ${{ inputs.cluster }}"
GIT_TAG="proposal(v${{ env.PROGRAM_VERSION }}@${{ inputs.cluster }})"
git tag $GIT_TAG
git push origin $GIT_TAG