-
-
Notifications
You must be signed in to change notification settings - Fork 74
86 lines (76 loc) · 3.16 KB
/
release-program.yaml
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
name: Release Program
on:
# TODO: switch to triggering only on tag with regex
# workflow_dispatch:
# inputs:
# program_lib_name:
# description: "Program library name"
# required: true
# type: choice
# options:
# - marginfi
# - liquidity_incentive_program
push:
tags:
- "testest-program-*" # Push events to matching program-*, i.e. program-circuit-breaker-0.0.1
env:
RUST_TOOLCHAIN: 1.71.0
SOLANA_CLI_VERSION: 1.16.20
ANCHOR_CLI_VERSION: 0.29.0
ANCHOR_SHA: fc9fd6d24b9be84abb2f40e47ed3faf7b11864ae
CARGO_TERM_COLOR: always
CARGO_BUILD_TARGET: x86_64-unknown-linux-gnu
jobs:
build-verifiable:
name: Generate verifiable build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Extract tag information
run: |
TAG=${GITHUB_REF#refs/tags/} # Extract tag name from ref
echo "Tag name: $TAG"
PROGRAM=$(echo $TAG | sed 's/testest-program-\(.*\)-[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/\1/')
VERSION=$(echo $TAG | sed 's/.*-\([0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}\)$/\1/')
PROGRAM_LIB_NAME=${PROGRAM//-/_} # Substitute dashes with underscores
PROGRAM_ID=$(~/.cargo/bin/toml get Anchor.toml programs.mainnet.${PROGRAM_LIB_NAME} | tr -d '"')
echo "Program: $PROGRAM"
echo "Program: $PROGRAM_ID"
echo "Version: $VERSION"
echo "PROGRAM_ID=${PROGRAM_ID}" >> $GITHUB_ENV
echo "PROGRAM_LIB_NAME=${PROGRAM_LIB_NAME}" >> $GITHUB_ENV
# Solely to generate the IDL
- name: Build program using Anchor
uses: ./.github/actions/build-program/
with:
program_lib_name: ${{ env.PROGRAM_LIB_NAME }}
# Build verifiable program - store it in target/deploy/${PROGRAM_LIB_NAME}.so
- name: Build verifiable program
uses: ./.github/actions/build-verifiable-program/
with:
program_lib_name: ${{ env.PROGRAM_LIB_NAME }}
# Display contents of /target/deploy and /target/idl
- run: ls -l target/deploy
- run: ls -l target/idl
# # Deploy the program to the buffer account
# - uses: ./.github/actions/buffer-deploy/
# id: buffer-deploy
# with:
# network: https://api.mainnet-beta.solana.com
# program: ${{ env.PROGRAM_LIB_NAME }}
# keypair: ${{ secrets.DEPLOYER_KEYPAIR }}
# program-id: ${{ env.PROGRAM_ID }}
# buffer-authority: ${{ secrets.MULTISIG_VAULT }}
# # Create MS proposal for program upgrade
# - name: Squads program upgrade
# uses: helium/squads-program-upgrade@v0.3.1
# with:
# network-url: "https://api.mainnet-beta.solana.com"
# program-multisig: ${{ secrets.MULTISIG }}
# program-id: ${{ env.PROGRAM_ID }}
# buffer: ${{ steps.buffer-deploy.outputs.buffer }}
# idl-buffer: ${{ steps.buffer-deploy.outputs.idl-buffer }}
# spill-address: ${{ secrets.DEPLOYER_ADDRESS }}
# authority: ${{ secrets.MULTISIG_VAULT }}
# name: "Deploy ${{env.PROGRAM_LIB_NAME}} ${{env.VERSION}}"
# keypair: ${{ secrets.DEPLOYER_KEYPAIR }}