ci.sh 466 B

1234567891011
  1. #!/bin/sh
  2. # this script ensures that the Misc test does not
  3. # test the miscNonRentExempt.ts during its test in the ci
  4. # because the misc test uses a newer solana version
  5. # than the miscNonRentExempt one. The latter needs to be on
  6. # a validator with a version < 1.9, so it can test
  7. # whether anchor's rent-exemption checks work for
  8. # legacy accounts which dont have to be rent-exempt
  9. rm ./tests/misc/misc.ts
  10. mv miscNonRentExempt.ts ./tests/misc/miscNonRentExempt.ts