build_branches.sh 238 B

1234567891011
  1. #!/bin/bash
  2. export RUSTFLAGS="-C target-cpu=native -C lto -C embed-bitcode=yes"
  3. BRANCH=testing
  4. for commit in $(cat test_commits.txt)
  5. do
  6. git checkout $commit
  7. cargo build --release
  8. mv target/release/bishop bishop_$commit
  9. done