ci.sh 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #!/usr/bin/env bash
  2. set -eox pipefail
  3. export DEFMT_LOG=trace
  4. MSRV="1.77.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. )
  39. test() {
  40. local version=$1
  41. rustup toolchain install $version
  42. for features in ${FEATURES_TEST[@]}; do
  43. cargo +$version test --no-default-features --features "$features"
  44. done
  45. if [[ $version == "nightly" ]]; then
  46. for features in ${FEATURES_TEST_NIGHTLY[@]}; do
  47. cargo +$version test --no-default-features --features "$features"
  48. done
  49. fi
  50. }
  51. check() {
  52. local version=$1
  53. rustup toolchain install $version
  54. export DEFMT_LOG="trace"
  55. for features in ${FEATURES_CHECK[@]}; do
  56. cargo +$version check --no-default-features --features "$features"
  57. done
  58. cargo +$version check --examples
  59. if [[ $version == "nightly" ]]; then
  60. cargo +$version check --benches
  61. fi
  62. }
  63. clippy() {
  64. rustup toolchain install $MSRV
  65. rustup component add clippy --toolchain=$MSRV
  66. cargo +$MSRV clippy --tests --examples -- -D warnings
  67. }
  68. coverage() {
  69. for features in ${FEATURES_TEST[@]}; do
  70. cargo llvm-cov --no-report --no-default-features --features "$features"
  71. done
  72. cargo llvm-cov report --lcov --output-path lcov.info
  73. }
  74. if [[ $1 == "test" || $1 == "all" ]]; then
  75. if [[ -n $2 ]]; then
  76. if [[ $2 == "msrv" ]]; then
  77. test $MSRV
  78. else
  79. test $2
  80. fi
  81. else
  82. for version in ${RUSTC_VERSIONS[@]}; do
  83. test $version
  84. done
  85. fi
  86. fi
  87. if [[ $1 == "check" || $1 == "all" ]]; then
  88. if [[ -n $2 ]]; then
  89. if [[ $2 == "msrv" ]]; then
  90. check $MSRV
  91. else
  92. check $2
  93. fi
  94. else
  95. for version in ${RUSTC_VERSIONS[@]}; do
  96. check $version
  97. done
  98. fi
  99. fi
  100. if [[ $1 == "clippy" || $1 == "all" ]]; then
  101. clippy
  102. fi
  103. if [[ $1 == "coverage" || $1 == "all" ]]; then
  104. coverage
  105. fi