1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/.github/workflows/ci.yml

166 lines
4.2 KiB
YAML
Raw Normal View History

2021-03-22 12:46:02 +01:00
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [master]
jobs:
build_and_test_linux:
strategy:
fail-fast: false
matrix:
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
version:
2021-12-29 10:42:31 +01:00
- 1.54.0 # MSRV
2021-03-22 12:46:02 +01:00
- stable
name: ${{ matrix.target.name }} / ${{ matrix.version }}
runs-on: ${{ matrix.target.os }}
services:
redis:
image: redis:6
2021-03-22 12:46:02 +01:00
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
--entrypoint redis-server
2021-03-22 12:46:02 +01:00
steps:
- uses: actions/checkout@v2
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-${{ matrix.target.triple }}
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
- name: Install cargo-hack
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-hack
- name: check minimal
uses: actions-rs/cargo@v1
2021-06-27 08:02:38 +02:00
with: { command: ci-min }
- name: check minimal + tests
uses: actions-rs/cargo@v1
2021-11-23 00:11:58 +01:00
with: { command: ci-check-min-tests }
2021-06-27 08:02:38 +02:00
- name: check default
uses: actions-rs/cargo@v1
2021-11-23 00:11:58 +01:00
with: { command: ci-check }
2021-03-22 12:46:02 +01:00
- name: tests
uses: actions-rs/cargo@v1
2021-06-27 08:02:38 +02:00
timeout-minutes: 40
with: { command: ci-test }
2021-03-22 12:46:02 +01:00
- name: Clear the cargo caches
run: |
2021-06-27 08:02:38 +02:00
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
2021-03-22 12:46:02 +01:00
cargo-cache
build_and_test_other:
strategy:
fail-fast: false
matrix:
target:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
version:
2021-12-29 10:42:31 +01:00
- 1.54.0 # MSRV
2021-03-22 12:46:02 +01:00
- stable
name: ${{ matrix.target.name }} / ${{ matrix.version }}
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v2
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-${{ matrix.target.triple }}
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
- name: Install cargo-hack
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-hack
- name: check minimal
uses: actions-rs/cargo@v1
2021-06-27 08:02:38 +02:00
with: { command: ci-min }
- name: check minimal + tests
uses: actions-rs/cargo@v1
2021-11-23 00:25:22 +01:00
with: { command: ci-check-min-tests }
2021-06-27 08:02:38 +02:00
- name: check default
uses: actions-rs/cargo@v1
2021-11-23 00:25:22 +01:00
with: { command: ci-check }
2021-03-22 12:46:02 +01:00
- name: tests
uses: actions-rs/cargo@v1
2021-06-27 08:02:38 +02:00
timeout-minutes: 40
2021-03-22 12:46:02 +01:00
with:
2021-06-27 08:02:38 +02:00
command: ci-test
args: --exclude=actix-redis --exclude=actix-session -- --nocapture
2021-03-22 12:46:02 +01:00
- name: Clear the cargo caches
run: |
2021-06-27 08:02:38 +02:00
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
2021-03-22 12:46:02 +01:00
cargo-cache
doc_tests:
name: doc tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust (nightly)
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with: { command: generate-lockfile }
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.3.0
- name: doc tests
uses: actions-rs/cargo@v1
timeout-minutes: 40
with:
command: ci-doctest
args: -- --nocapture