2021-12-31 09:32:04 +01:00
|
|
|
name: CI (master only)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
2021-12-31 09:38:31 +01:00
|
|
|
build_and_test_linux_nightly:
|
2021-12-31 09:32:04 +01:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
|
|
|
|
version:
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
name: ${{ matrix.target.name }} / ${{ matrix.version }}
|
|
|
|
runs-on: ${{ matrix.target.os }}
|
|
|
|
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: redis:5.0.7
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
options: --entrypoint redis-server
|
|
|
|
|
|
|
|
steps:
|
2022-05-25 15:07:31 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-31 09:32:04 +01:00
|
|
|
|
|
|
|
- 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
|
|
|
|
with: { command: ci-min }
|
|
|
|
|
2022-05-25 15:07:31 +02:00
|
|
|
- name: check minimal + examples
|
2021-12-31 09:32:04 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2022-05-25 15:07:31 +02:00
|
|
|
with: { command: ci-check-min-examples }
|
2021-12-31 09:32:04 +01:00
|
|
|
|
|
|
|
- name: check default
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with: { command: ci-check }
|
|
|
|
|
|
|
|
- name: tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
timeout-minutes: 40
|
|
|
|
with: { command: ci-test }
|
|
|
|
|
|
|
|
- name: Clear the cargo caches
|
|
|
|
run: |
|
|
|
|
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
|
|
|
|
cargo-cache
|
|
|
|
|
2021-12-31 09:38:31 +01:00
|
|
|
build_and_test_other_nightly:
|
2021-12-31 09:32:04 +01:00
|
|
|
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:
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
name: ${{ matrix.target.name }} / ${{ matrix.version }}
|
|
|
|
runs-on: ${{ matrix.target.os }}
|
|
|
|
|
|
|
|
steps:
|
2022-05-25 15:07:31 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-31 09:32:04 +01:00
|
|
|
|
|
|
|
- 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
|
|
|
|
with: { command: ci-min }
|
|
|
|
|
2022-05-25 15:07:31 +02:00
|
|
|
- name: check minimal + examples
|
2021-12-31 09:32:04 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2022-05-25 15:07:31 +02:00
|
|
|
with: { command: ci-check-min-examples }
|
2021-12-31 09:32:04 +01:00
|
|
|
|
|
|
|
- name: check default
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with: { command: ci-check }
|
|
|
|
|
|
|
|
- name: tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
timeout-minutes: 40
|
|
|
|
with:
|
|
|
|
command: ci-test
|
2022-03-20 01:40:34 +01:00
|
|
|
args: >-
|
|
|
|
--exclude=actix-redis
|
|
|
|
--exclude=actix-session
|
|
|
|
--exclude=actix-limitation
|
|
|
|
-- --nocapture
|
2021-12-31 09:32:04 +01:00
|
|
|
|
|
|
|
- name: Clear the cargo caches
|
|
|
|
run: |
|
|
|
|
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
|
|
|
|
cargo-cache
|