run.sh 622 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env bash
  2. # http://redsymbol.net/articles/unofficial-bash-strict-mode/
  3. set -euo pipefail
  4. IFS=$'\n\t'
  5. DIR=$(dirname "$(realpath "$0")")
  6. cd "$DIR" || exit
  7. function fn_main() {
  8. fn_build_rust_bins
  9. fn_multiboot2_integrationtest
  10. fn_multiboot2_header_integrationtest
  11. }
  12. function fn_build_rust_bins() {
  13. cd "bins"
  14. cargo build --release
  15. cd "$DIR"
  16. }
  17. function fn_multiboot2_integrationtest() {
  18. cd tests/multiboot2
  19. ./build_img.sh
  20. ./run_qemu.sh
  21. cd "$DIR"
  22. }
  23. function fn_multiboot2_header_integrationtest() {
  24. cd tests/multiboot2-header
  25. ./run_qemu.sh
  26. cd "$DIR"
  27. }
  28. fn_main