test.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. on:
  2. push:
  3. branches: [ staging, trying, master ]
  4. pull_request:
  5. name: Test
  6. jobs:
  7. test:
  8. runs-on: ubuntu-20.04
  9. continue-on-error: ${{ matrix.rust == 'nightly' }}
  10. strategy:
  11. matrix:
  12. # Test on stable, MSRV 1.40, and nightly.
  13. # Failure is permitted on nightly.
  14. rust:
  15. - stable
  16. - 1.40.0
  17. - nightly
  18. features:
  19. # Test default features.
  20. - default
  21. # Test features chosen to be as orthogonal as possible.
  22. - std ethernet phy-raw_socket proto-ipv6 socket-udp
  23. - std ethernet phy-tap_interface proto-ipv6 socket-udp
  24. - std ethernet proto-ipv4 proto-igmp socket-raw
  25. - std ethernet proto-ipv4 socket-udp socket-tcp
  26. - std ethernet proto-ipv4 proto-dhcpv4 socket-udp
  27. - std ethernet proto-ipv6 socket-udp
  28. - std ethernet proto-ipv6 socket-tcp
  29. - std ethernet proto-ipv4 socket-icmp socket-tcp
  30. - std ethernet proto-ipv6 socket-icmp socket-tcp
  31. # Test features chosen to be as aggressive as possible.
  32. - std ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp async
  33. include:
  34. # Test alloc feature which requires nightly.
  35. - rust: nightly
  36. features: alloc ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
  37. - rust: nightly
  38. features: alloc proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
  39. steps:
  40. - uses: actions/checkout@v2
  41. - uses: actions-rs/toolchain@v1
  42. with:
  43. profile: minimal
  44. toolchain: ${{ matrix.rust }}
  45. override: true
  46. - name: Run Tests
  47. run: cargo test --no-default-features --features "${{ matrix.features }}"
  48. check:
  49. runs-on: ubuntu-20.04
  50. continue-on-error: ${{ matrix.rust == 'nightly' }}
  51. strategy:
  52. matrix:
  53. # Test on stable, MSRV 1.40, and nightly.
  54. # Failure is permitted on nightly.
  55. rust:
  56. - stable
  57. - 1.40.0
  58. - nightly
  59. features:
  60. # These feature sets cannot run tests, so we only check they build.
  61. - ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp async
  62. steps:
  63. - uses: actions/checkout@v2
  64. - uses: actions-rs/toolchain@v1
  65. with:
  66. profile: minimal
  67. toolchain: ${{ matrix.rust }}
  68. override: true
  69. - name: Check
  70. run: cargo check --no-default-features --features "${{ matrix.features }}"