File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -380,6 +380,11 @@ jobs:
380380 keypair : ${{ env.DEPLOYER_KEYPAIR }}
381381 idl-buffer : ${{ steps.idl-buffer.outputs.buffer }}
382382
383+ # Add small delay to ensure program buffer is finalized because sometimes verify can not find the deployed slot
384+ - name : Wait for program buffer to finalize
385+ if : inputs.use-squads == false
386+ run : sleep 14
387+
383388 - name : Verify Build
384389 uses : solana-developers/github-actions/.github/actions/verify-build@v0.2.3
385390 id : verify-build
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.2.4] - 2024-03-21
9+
10+ ### Changed
11+
12+ - Added delay before verify build step to ensure program upgrade is finalized before verify
13+
814## [ 0.2.2] - 2024-03-21
915
1016### Changed
Original file line number Diff line number Diff line change 3737
3838jobs :
3939 build :
40- uses : solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.3
40+ uses : solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.4
4141 with :
4242 program : " hello_world"
4343 network : " devnet"
6868
6969jobs :
7070 build :
71- uses : solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.3
71+ uses : solana-developers/github-workflows/.github/workflows/reusable-build.yaml@v0.2.4
7272 with :
7373 program : " transaction_example"
7474 network : " mainnet"
134134
135135jobs :
136136 test :
137- uses : solana-developers/github-workflows/.github/workflows/test.yaml@v0.2.3
137+ uses : solana-developers/github-workflows/.github/workflows/test.yaml@v0.2.4
138138 with :
139139 program : ${{ 'transaction_example' }}
140140` ` `
You can’t perform that action at this time.
0 commit comments