Disable interface name binding on some platforms #1996
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: '00 00 * * *' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.job.os }} | |
strategy: | |
matrix: | |
job: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
flags: --features=native-tls | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
flags: --no-default-features --features=native-tls,online-tests # disables rustls | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
flags: --features=native-tls | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
flags: --features=native-tls | |
- target: x86_64-unknown-linux-musl | |
os: ubuntu-latest | |
use-cross: true | |
- target: aarch64-unknown-linux-musl | |
os: ubuntu-latest | |
use-cross: true | |
flags: -- --test-threads=4 | |
- target: arm-unknown-linux-gnueabihf | |
os: ubuntu-latest | |
use-cross: true | |
flags: -- --test-threads=4 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.64.0 # minimum supported rust version | |
target: ${{ matrix.job.target }} | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: v2-${{ matrix.job.target }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
use-cross: ${{ matrix.job.use-cross }} | |
command: test | |
args: --target ${{ matrix.job.target }} ${{ matrix.job.flags }} | |
fmt-and-clippy: | |
name: Rustfmt and clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v1 | |
- name: Rustfmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: -- --check | |
- name: Clippy (default features) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --tests -- -D warnings -A unknown-lints | |
- name: Clippy (all features) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-features --tests -- -D warnings -A unknown-lints | |
- name: Clippy (native-tls only) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --no-default-features --features=native-tls,online-tests --tests -- -D warnings -A unknown-lints |