test.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. on:
  2. push:
  3. branches: [staging, trying]
  4. pull_request:
  5. name: Test
  6. jobs:
  7. tests:
  8. runs-on: ubuntu-22.04
  9. needs: [test, check]
  10. steps:
  11. - name: Done
  12. run: exit 0
  13. test:
  14. runs-on: ubuntu-22.04
  15. continue-on-error: ${{ matrix.rust == 'nightly' }}
  16. strategy:
  17. matrix:
  18. # Test on stable, MSRV, and nightly.
  19. # Failure is permitted on nightly.
  20. rust:
  21. #- stable # TODO: enable again when "stable" is 1.66 or higher.
  22. - 1.65.0
  23. - nightly
  24. features:
  25. # Test default features.
  26. - default
  27. # Test minimal featureset
  28. - std proto-ipv4
  29. # Test features chosen to be as orthogonal as possible.
  30. - std medium-ethernet phy-raw_socket proto-ipv6 socket-udp socket-dns
  31. - std medium-ethernet phy-tuntap_interface proto-ipv6 socket-udp
  32. - std medium-ethernet proto-ipv4 proto-igmp socket-raw socket-dns
  33. - std medium-ethernet proto-ipv4 socket-udp socket-tcp socket-dns
  34. - std medium-ethernet proto-ipv4 proto-dhcpv4 socket-udp
  35. - std medium-ethernet medium-ip medium-ieee802154 proto-ipv6 socket-udp socket-dns
  36. - std medium-ethernet proto-ipv6 socket-tcp
  37. - std medium-ethernet medium-ip proto-ipv4 socket-icmp socket-tcp
  38. - std medium-ip proto-ipv6 socket-icmp socket-tcp
  39. - std medium-ieee802154 proto-sixlowpan proto-sixlowpan-fragmentation socket-udp
  40. - std medium-ip proto-ipv4 proto-ipv6 socket-tcp socket-udp
  41. # Test features chosen to be as aggressive as possible.
  42. - std medium-ethernet medium-ip medium-ieee802154 proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  43. include:
  44. # Test alloc feature which requires nightly.
  45. - rust: nightly
  46. features: alloc medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
  47. env:
  48. RUSTUP_TOOLCHAIN: "${{ matrix.rust }}"
  49. steps:
  50. - uses: actions/checkout@v2
  51. - name: Run Tests
  52. run: cargo test --no-default-features --features "${{ matrix.features }}"
  53. check:
  54. runs-on: ubuntu-22.04
  55. continue-on-error: ${{ matrix.rust == 'nightly' }}
  56. strategy:
  57. matrix:
  58. # Test on stable, MSRV, and nightly.
  59. # Failure is permitted on nightly.
  60. rust:
  61. #- stable # TODO: enable again when "stable" is 1.66 or higher.
  62. - 1.65.0
  63. - nightly
  64. features:
  65. # These feature sets cannot run tests, so we only check they build.
  66. - medium-ip medium-ethernet medium-ieee802154 proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  67. - defmt medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  68. - defmt alloc medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  69. env:
  70. # Set DEFMT_LOG to trace so that all net_{error, .., trace} messages
  71. # are actually compiled and verified
  72. DEFMT_LOG: "trace"
  73. RUSTUP_TOOLCHAIN: "${{ matrix.rust }}"
  74. steps:
  75. - uses: actions/checkout@v2
  76. - name: Check
  77. run: cargo check --no-default-features --features "${{ matrix.features }}"