ci.sh 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #!/usr/bin/env bash
  2. set -eox pipefail
  3. export DEFMT_LOG=trace
  4. MSRV="1.81.0"
  5. RUSTC_VERSIONS=(
  6. $MSRV
  7. "stable"
  8. "nightly"
  9. )
  10. FEATURES_TEST=(
  11. "default"
  12. "std,proto-ipv4"
  13. "std,medium-ethernet,phy-raw_socket,proto-ipv6,socket-udp,socket-dns"
  14. "std,medium-ethernet,phy-tuntap_interface,proto-ipv6,socket-udp"
  15. "std,medium-ethernet,proto-ipv4,proto-ipv4-fragmentation,socket-raw,socket-dns"
  16. "std,medium-ethernet,proto-ipv4,multicast,socket-raw,socket-dns"
  17. "std,medium-ethernet,proto-ipv4,socket-udp,socket-tcp,socket-dns"
  18. "std,medium-ethernet,proto-ipv4,proto-dhcpv4,socket-udp"
  19. "std,medium-ethernet,medium-ip,medium-ieee802154,proto-ipv6,multicast,proto-rpl,socket-udp,socket-dns"
  20. "std,medium-ethernet,proto-ipv6,socket-tcp"
  21. "std,medium-ethernet,medium-ip,proto-ipv4,socket-icmp,socket-tcp"
  22. "std,medium-ip,proto-ipv6,socket-icmp,socket-tcp"
  23. "std,medium-ieee802154,proto-sixlowpan,socket-udp"
  24. "std,medium-ieee802154,proto-sixlowpan,proto-sixlowpan-fragmentation,socket-udp"
  25. "std,medium-ieee802154,proto-rpl,proto-sixlowpan,proto-sixlowpan-fragmentation,socket-udp"
  26. "std,medium-ip,proto-ipv4,proto-ipv6,socket-tcp,socket-udp"
  27. "std,medium-ethernet,medium-ip,medium-ieee802154,proto-ipv4,proto-ipv6,multicast,proto-rpl,socket-raw,socket-udp,socket-tcp,socket-icmp,socket-dns,async"
  28. "std,medium-ieee802154,medium-ip,proto-ipv4,socket-raw"
  29. "std,medium-ethernet,proto-ipv4,proto-ipsec,socket-raw"
  30. )
  31. FEATURES_TEST_NIGHTLY=(
  32. "alloc,medium-ethernet,proto-ipv4,proto-ipv6,socket-raw,socket-udp,socket-tcp,socket-icmp"
  33. )
  34. FEATURES_CHECK=(
  35. "medium-ip,medium-ethernet,medium-ieee802154,proto-ipv6,proto-ipv6,multicast,proto-dhcpv4,proto-ipsec,socket-raw,socket-udp,socket-tcp,socket-icmp,socket-dns,async"
  36. "defmt,medium-ip,medium-ethernet,proto-ipv6,proto-ipv6,multicast,proto-dhcpv4,socket-raw,socket-udp,socket-tcp,socket-icmp,socket-dns,async"
  37. "defmt,alloc,medium-ip,medium-ethernet,proto-ipv6,proto-ipv6,multicast,proto-dhcpv4,socket-raw,socket-udp,socket-tcp,socket-icmp,socket-dns,async"
  38. "medium-ieee802154,proto-sixlowpan,socket-dns"
  39. )
  40. test() {
  41. local version=$1
  42. rustup toolchain install $version
  43. for features in ${FEATURES_TEST[@]}; do
  44. cargo +$version test --no-default-features --features "$features"
  45. done
  46. if [[ $version == "nightly" ]]; then
  47. for features in ${FEATURES_TEST_NIGHTLY[@]}; do
  48. cargo +$version test --no-default-features --features "$features"
  49. done
  50. fi
  51. }
  52. netsim() {
  53. cargo test --release --features _netsim netsim
  54. }
  55. check() {
  56. local version=$1
  57. rustup toolchain install $version
  58. export DEFMT_LOG="trace"
  59. for features in ${FEATURES_CHECK[@]}; do
  60. cargo +$version check --no-default-features --features "$features"
  61. done
  62. cargo +$version check --examples
  63. if [[ $version == "nightly" ]]; then
  64. cargo +$version check --benches
  65. fi
  66. }
  67. clippy() {
  68. rustup toolchain install $MSRV
  69. rustup component add clippy --toolchain=$MSRV
  70. cargo +$MSRV clippy --tests --examples -- -D warnings
  71. }
  72. build_16bit() {
  73. rustup toolchain install nightly
  74. rustup +nightly component add rust-src
  75. TARGET_WITH_16BIT_POINTER=msp430-none-elf
  76. for features in ${FEATURES_CHECK[@]}; do
  77. cargo +nightly build -Z build-std=core,alloc --target $TARGET_WITH_16BIT_POINTER --no-default-features --features=$features
  78. done
  79. }
  80. coverage() {
  81. for features in ${FEATURES_TEST[@]}; do
  82. cargo llvm-cov --no-report --no-default-features --features "$features"
  83. done
  84. cargo llvm-cov report --lcov --output-path lcov.info
  85. }
  86. if [[ $1 == "test" || $1 == "all" ]]; then
  87. if [[ -n $2 ]]; then
  88. if [[ $2 == "msrv" ]]; then
  89. test $MSRV
  90. else
  91. test $2
  92. fi
  93. else
  94. for version in ${RUSTC_VERSIONS[@]}; do
  95. test $version
  96. done
  97. fi
  98. fi
  99. if [[ $1 == "check" || $1 == "all" ]]; then
  100. if [[ -n $2 ]]; then
  101. if [[ $2 == "msrv" ]]; then
  102. check $MSRV
  103. else
  104. check $2
  105. fi
  106. else
  107. for version in ${RUSTC_VERSIONS[@]}; do
  108. check $version
  109. done
  110. fi
  111. fi
  112. if [[ $1 == "clippy" || $1 == "all" ]]; then
  113. clippy
  114. fi
  115. if [[ $1 == "build_16bit" || $1 == "all" ]]; then
  116. build_16bit
  117. fi
  118. if [[ $1 == "coverage" || $1 == "all" ]]; then
  119. coverage
  120. fi
  121. if [[ $1 == "netsim" || $1 == "all" ]]; then
  122. netsim
  123. fi