cicd.sh 368 B

12345678
  1. #!/bin/bash
  2. # This script is for quick building & deploying of the program.
  3. # It also serves as a reference for the commands used for building & deploying Solana programs.
  4. # Run this bad boy with "bash cicd.sh" or "./cicd.sh"
  5. cargo build-sbf --manifest-path=./program/Cargo.toml --bpf-out-dir=./program/target/so
  6. solana program deploy ./program/target/so/program.so