test.yml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. on:
  2. push:
  3. branches: [staging, trying]
  4. pull_request:
  5. name: Test
  6. jobs:
  7. tests:
  8. runs-on: ubuntu-20.04
  9. needs: [test, check]
  10. steps:
  11. - name: Done
  12. run: exit 0
  13. test:
  14. runs-on: ubuntu-20.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
  22. - 1.60.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. # Test features chosen to be as aggressive as possible.
  40. - std medium-ethernet medium-ip medium-ieee802154 proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  41. include:
  42. # Test alloc feature which requires nightly.
  43. - rust: nightly
  44. features: alloc medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
  45. steps:
  46. - uses: actions/checkout@v2
  47. - uses: actions-rs/toolchain@v1
  48. with:
  49. profile: minimal
  50. toolchain: ${{ matrix.rust }}
  51. override: true
  52. - name: Run Tests
  53. run: cargo test --no-default-features --features "${{ matrix.features }}"
  54. check:
  55. runs-on: ubuntu-20.04
  56. continue-on-error: ${{ matrix.rust == 'nightly' }}
  57. env:
  58. # Set DEFMT_LOG to trace so that all net_{error, .., trace} messages
  59. # are actually compiled and verified
  60. DEFMT_LOG: "trace"
  61. strategy:
  62. matrix:
  63. # Test on stable, MSRV, and nightly.
  64. # Failure is permitted on nightly.
  65. rust:
  66. - stable
  67. - 1.60.0
  68. - nightly
  69. features:
  70. # These feature sets cannot run tests, so we only check they build.
  71. - 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
  72. - defmt medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp socket-dns async
  73. - 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
  74. steps:
  75. - uses: actions/checkout@v2
  76. - uses: actions-rs/toolchain@v1
  77. with:
  78. profile: minimal
  79. toolchain: ${{ matrix.rust }}
  80. override: true
  81. - name: Check
  82. run: cargo check --no-default-features --features "${{ matrix.features }}"