ci.sh 244 B

123456789101112
  1. #!/bin/bash
  2. set -ex
  3. ./fmt.sh -- --write-mode=diff
  4. ./test.sh
  5. cargo build --target=x86_64-unknown-redox
  6. if [ $(arch) == "x86_64" ]
  7. then
  8. cargo build --target=aarch64-unknown-linux-gnu
  9. else
  10. cargo build --target=x86_64-unknown-linux-gnu
  11. fi