246: Improve the ci r=Kerollmops a=irevoire

Rewrite the CI entirely:
- run the ci on Linux, macOS and Windows.
- run the ci on rust stable, beta and nightly
- add rustfmt to the CI.
- split the CI into multiple tasks, this way, the ci should be faster to fail

Co-authored-by: Tamo <tamo@meilisearch.com>
Co-authored-by: Irevoire <tamo@meilisearch.com>
This commit is contained in:
bors[bot] 2021-06-23 12:52:39 +00:00 committed by GitHub
commit 41c4a5b60d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 79 additions and 64 deletions

75
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,75 @@
name: Rust
on:
push:
branches: [ staging, trying ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Tests on ${{ matrix.os }} with ${{ matrix.rust }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, macos-latest]
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --locked
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --release
# We don't run test on Windows since we get the following error: There is not enough space on the disk.
check-on-windows:
name: Cargo check on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Run cargo check without any default features
uses: actions-rs/cargo@v1
with:
command: check
args: --all --locked
- name: Run cargo check with all default features
uses: actions-rs/cargo@v1
with:
command: check
fmt:
name: Run Rustfmt
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- name: Run cargo fmt
# Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file.
# Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate
# we are going to create an empty file where rustfmt expects it.
run: |
echo -ne "\n" > benchmarks/benches/datasets_paths.rs
cargo fmt --all -- --check

View File

@ -1,63 +0,0 @@
name: Continuous integration
on:
push:
branches: [ staging, trying ]
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
# We temporarily stop building on nightly just to fix this issue
# https://github.com/bheisler/TinyTemplate/pull/17
# Reenable it when the fix has been merged.
# - nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: check
args: --all --locked
- uses: actions-rs/cargo@v1
with:
command: build
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: bench
args: --no-run -p benchmarks
# - uses: actions-rs/cargo@v1
# with:
# command: bench
# args: --no-run
# - uses: actions-rs/cargo@v1
# with:
# command: fmt
# args: -- --check
# - uses: actions-rs/cargo@v1
# with:
# command: clippy
# args: --all-targets -- -D warnings

View File

@ -1,5 +1,8 @@
status = [ status = [
'ci (stable)' 'Tests on ubuntu-18.04 with stable',
'Tests on macos-latest with stable',
'Cargo check on Windows',
'Run Rustfmt',
] ]
# 3 hours timeout # 3 hours timeout
timeout-sec = 10800 timeout-sec = 10800