renet/.github/workflows/test.yml

88 lines
2.9 KiB
YAML
Raw Normal View History

2020-12-22 20:11:10 +08:00
on:
push:
branches: [ staging, trying ]
2020-12-22 20:11:10 +08:00
pull_request:
name: Test
jobs:
2021-10-06 03:50:50 +08:00
tests:
runs-on: ubuntu-20.04
needs: [test, check]
steps:
- name: Done
run: exit 0
2020-12-22 20:11:10 +08:00
test:
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.rust == 'nightly' }}
strategy:
matrix:
2021-08-18 21:17:13 +08:00
# Test on stable, MSRV 1.46, and nightly.
2020-12-22 20:11:10 +08:00
# Failure is permitted on nightly.
rust:
- stable
- 1.56.0
2020-12-22 20:11:10 +08:00
- nightly
features:
# Test default features.
- default
2021-02-01 23:45:32 +08:00
# Test minimal featureset
- std proto-ipv4
2020-12-22 20:11:10 +08:00
# Test features chosen to be as orthogonal as possible.
- std medium-ethernet phy-raw_socket proto-ipv6 socket-udp
2021-03-25 01:04:42 +08:00
- std medium-ethernet phy-tuntap_interface proto-ipv6 socket-udp
- std medium-ethernet proto-ipv4 proto-igmp socket-raw
- std medium-ethernet proto-ipv4 socket-udp socket-tcp
- std medium-ethernet proto-ipv4 proto-dhcpv4 socket-udp
- std medium-ethernet proto-ipv6 socket-udp
- std medium-ethernet proto-ipv6 socket-tcp
- std medium-ethernet proto-ipv4 socket-icmp socket-tcp
- std medium-ethernet proto-ipv6 socket-icmp socket-tcp
2020-12-22 20:11:10 +08:00
# Test features chosen to be as aggressive as possible.
- std medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp async
2020-12-22 20:11:10 +08:00
include:
# Test alloc feature which requires nightly.
- rust: nightly
features: alloc rand-custom-impl medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
2020-12-22 20:11:10 +08:00
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Run Tests
run: cargo test --no-default-features --features "${{ matrix.features }}"
check:
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.rust == 'nightly' }}
strategy:
matrix:
2021-08-18 21:17:13 +08:00
# Test on stable, MSRV 1.46, and nightly.
2020-12-22 20:11:10 +08:00
# Failure is permitted on nightly.
rust:
- stable
- 1.56.0
2020-12-22 20:11:10 +08:00
- nightly
features:
# These feature sets cannot run tests, so we only check they build.
- rand-custom-impl medium-ip medium-ethernet medium-ieee802154 proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp async
- rand-custom-impl defmt medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw socket-udp socket-tcp socket-icmp async
2020-12-22 20:11:10 +08:00
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Check
run: cargo check --no-default-features --features "${{ matrix.features }}"