540: make bors checks much simpler r=Dirbaio a=Emilgardis



Co-authored-by: Emil Gardström <emil.gardstrom@gmail.com>
master
bors[bot] 2021-10-05 20:09:54 +00:00 committed by GitHub
commit 9539e7987a
2 changed files with 7 additions and 43 deletions

44
.github/bors.toml vendored
View File

@ -1,48 +1,6 @@
status = [
"tests",
"fuzz",
"test (stable, default)",
"clippy",
"fmt",
"test (stable, std proto-ipv4)",
"test (stable, std medium-ethernet phy-raw_socket proto-ipv6 socket-udp)",
"test (stable, std medium-ethernet phy-tuntap_interface proto-ipv6 socket-udp)",
"test (stable, std medium-ethernet proto-ipv4 proto-igmp socket-raw)",
"test (stable, std medium-ethernet proto-ipv4 socket-udp socket-tcp)",
"test (stable, std medium-ethernet proto-ipv4 proto-dhcpv4 socket-udp)",
"test (stable, std medium-ethernet proto-ipv6 socket-udp)",
"test (stable, std medium-ethernet proto-ipv6 socket-tcp)",
"test (stable, std medium-ethernet proto-ipv4 socket-icmp socket-tcp)",
"test (stable, std medium-ethernet proto-ipv6 socket-icmp socket-tcp)",
"test (stable, std medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-i...",
"test (1.53.0, default)",
"test (1.53.0, std proto-ipv4)",
"test (1.53.0, std medium-ethernet phy-raw_socket proto-ipv6 socket-udp)",
"test (1.53.0, std medium-ethernet phy-tuntap_interface proto-ipv6 socket-udp)",
"test (1.53.0, std medium-ethernet proto-ipv4 proto-igmp socket-raw)",
"test (1.53.0, std medium-ethernet proto-ipv4 socket-udp socket-tcp)",
"test (1.53.0, std medium-ethernet proto-ipv4 proto-dhcpv4 socket-udp)",
"test (1.53.0, std medium-ethernet proto-ipv6 socket-udp)",
"test (1.53.0, std medium-ethernet proto-ipv6 socket-tcp)",
"test (1.53.0, std medium-ethernet proto-ipv4 socket-icmp socket-tcp)",
"test (1.53.0, std medium-ethernet proto-ipv6 socket-icmp socket-tcp)",
"test (1.53.0, std medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-i...",
"test (nightly, default)",
"test (nightly, std proto-ipv4)",
"test (nightly, std medium-ethernet phy-raw_socket proto-ipv6 socket-udp)",
"test (nightly, std medium-ethernet phy-tuntap_interface proto-ipv6 socket-udp)",
"test (nightly, std medium-ethernet proto-ipv4 proto-igmp socket-raw)",
"test (nightly, std medium-ethernet proto-ipv4 socket-udp socket-tcp)",
"test (nightly, std medium-ethernet proto-ipv4 proto-dhcpv4 socket-udp)",
"test (nightly, std medium-ethernet proto-ipv6 socket-udp)",
"test (nightly, std medium-ethernet proto-ipv6 socket-tcp)",
"test (nightly, std medium-ethernet proto-ipv4 socket-icmp socket-tcp)",
"test (nightly, std medium-ethernet proto-ipv6 socket-icmp socket-tcp)",
"test (nightly, std medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-...",
"test (nightly, alloc medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socke...",
"check (stable, medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw...",
"check (stable, defmt defmt-trace medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto...",
"check (1.53.0, medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-raw...",
"check (1.53.0, defmt defmt-trace medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto...",
"check (nightly, medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp proto-dhcpv4 socket-ra...",
"check (nightly, defmt defmt-trace medium-ip medium-ethernet proto-ipv6 proto-ipv6 proto-igmp prot...",
]

View File

@ -6,6 +6,12 @@ on:
name: Test
jobs:
tests:
runs-on: ubuntu-20.04
needs: [test, check]
steps:
- name: Done
run: exit 0
test:
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.rust == 'nightly' }}