build_branches.sh 169 B

12345678910
  1. #!/bin/bash
  2. BRANCH=testing
  3. for commit in $(cat test_commits.txt)
  4. do
  5. git checkout $commit
  6. cargo build --release
  7. mv target/release/bishop bishop_$commit
  8. done