Drop support for rand_core < 0.6 #8
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
toolchain: stable | |
# TODO: also aarch64 / M1 | |
- os: windows-latest | |
target: x86_64-pc-windows-gnu | |
toolchain: stable | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
toolchain: beta | |
# Test both windows-gnu and windows-msvc; use beta rust on one | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
toolchain: 1.36.0 # MSRV | |
- os: ubuntu-latest | |
deps: sudo apt-get update ; sudo apt install gcc-multilib | |
target: i686-unknown-linux-gnu | |
toolchain: nightly | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
toolchain: nightly | |
variant: minimal_versions | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
target: ${{ matrix.target }} | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- run: ${{ matrix.deps }} | |
- name: Maybe minimal versions | |
if: ${{ matrix.variant == 'minimal_versions' }} | |
run: cargo generate-lockfile -Z minimal-versions | |
- name: Test nightly | |
if: ${{ matrix.toolchain == 'nightly' }} | |
run: cargo test --target ${{ matrix.target }} --benches | |
- name: Test | |
run: cargo test | |
test-cross: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
target: mips-unknown-linux-gnu | |
toolchain: stable | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
target: ${{ matrix.target }} | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- name: Cache cargo plugins | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cargo/bin/ | |
key: ${{ runner.os }}-cargo-plugins | |
- name: Install cross | |
run: cargo install cross || true | |
- name: Test | |
run: cross test --no-fail-fast --target ${{ matrix.target }} | |
test-miri: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
run: | | |
MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri) | |
rustup default "$MIRI_NIGHTLY" | |
rustup component add miri | |
- name: Test | |
run: cargo miri test |