2021-03-22 12:46:02 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2023-04-09 20:35:30 +02:00
|
|
|
pull_request: {}
|
|
|
|
push: { branches: [master] }
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2021-03-22 12:46:02 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test_linux:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
|
|
|
|
version:
|
2023-03-23 11:53:54 +01:00
|
|
|
- '1.60' # MSRV
|
2021-03-22 12:46:02 +01:00
|
|
|
- stable
|
|
|
|
|
|
|
|
name: ${{ matrix.target.name }} / ${{ matrix.version }}
|
|
|
|
runs-on: ${{ matrix.target.os }}
|
|
|
|
|
|
|
|
services:
|
|
|
|
redis:
|
2022-03-06 00:22:14 +01:00
|
|
|
image: redis:6
|
2021-03-22 12:46:02 +01:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2022-03-06 00:22:14 +01:00
|
|
|
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:
|
2022-05-25 15:07:31 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-22 12:46:02 +01:00
|
|
|
|
2023-04-09 20:35:30 +02:00
|
|
|
- name: Install Rust (${{ matrix.version }})
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.version }}
|
2022-07-04 17:43:33 +02:00
|
|
|
|
2023-04-09 20:35:30 +02:00
|
|
|
- uses: taiki-e/cache-cargo-install-action@v1
|
|
|
|
with: { tool: cargo-hack }
|
2021-03-22 12:46:02 +01:00
|
|
|
|
2023-03-23 13:15:25 +01:00
|
|
|
- name: workaround MSRV issues
|
|
|
|
if: matrix.version != 'stable'
|
|
|
|
run: |
|
2023-04-09 20:35:30 +02:00
|
|
|
cargo update -p=time:0.3.20 --precise=0.3.16
|
2023-03-23 13:15:25 +01:00
|
|
|
|
2021-03-22 12:46:02 +01:00
|
|
|
- name: check minimal
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-min
|
2021-06-27 08:02:38 +02:00
|
|
|
|
2022-05-25 15:07:31 +02:00
|
|
|
- name: check minimal + examples
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-check-min-examples
|
2021-06-27 08:02:38 +02:00
|
|
|
|
|
|
|
- name: check default
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-check
|
2021-03-22 12:46:02 +01:00
|
|
|
|
|
|
|
- name: tests
|
2021-06-27 08:02:38 +02:00
|
|
|
timeout-minutes: 40
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-test
|
2021-06-27 08:02:38 +02:00
|
|
|
|
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 }
|
2022-12-01 11:45:31 +01:00
|
|
|
- {
|
|
|
|
name: Windows,
|
|
|
|
os: windows-latest,
|
|
|
|
triple: x86_64-pc-windows-msvc,
|
|
|
|
}
|
2021-03-22 12:46:02 +01:00
|
|
|
version:
|
2023-03-23 11:53:54 +01:00
|
|
|
- '1.60' # MSRV
|
2021-03-22 12:46:02 +01:00
|
|
|
- stable
|
|
|
|
|
|
|
|
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-03-22 12:46:02 +01:00
|
|
|
|
2023-04-09 20:35:30 +02:00
|
|
|
- name: Install Rust (${{ matrix.version }})
|
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.version }}
|
2021-03-22 12:46:02 +01:00
|
|
|
|
2023-04-09 20:35:30 +02:00
|
|
|
- uses: taiki-e/cache-cargo-install-action@v1
|
|
|
|
with: { tool: cargo-hack }
|
|
|
|
|
|
|
|
- uses: taiki-e/cache-cargo-install-action@v1
|
|
|
|
with: { tool: cargo-hack }
|
2022-07-04 17:43:33 +02:00
|
|
|
|
2023-01-07 02:38:07 +01:00
|
|
|
- name: workaround MSRV issues
|
|
|
|
if: matrix.version != 'stable'
|
|
|
|
run: |
|
2023-04-09 20:35:30 +02:00
|
|
|
cargo update -p=time:0.3.20 --precise=0.3.16
|
2023-03-23 13:15:25 +01:00
|
|
|
|
2021-03-22 12:46:02 +01:00
|
|
|
- name: check minimal
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-min
|
2021-06-27 08:02:38 +02:00
|
|
|
|
2022-05-25 15:07:31 +02:00
|
|
|
- name: check minimal + examples
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-check-min-examples
|
2021-06-27 08:02:38 +02:00
|
|
|
|
|
|
|
- name: check default
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-check
|
2021-03-22 12:46:02 +01:00
|
|
|
|
|
|
|
- name: tests
|
2021-06-27 08:02:38 +02:00
|
|
|
timeout-minutes: 40
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-test --exclude=actix-redis --exclude=actix-session --exclude=actix-limitation
|
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
|
2021-11-23 00:42:47 +01:00
|
|
|
|
|
|
|
doc_tests:
|
|
|
|
name: doc tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-25 15:07:31 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-23 00:42:47 +01:00
|
|
|
|
|
|
|
- name: Install Rust (nightly)
|
2023-04-09 20:35:30 +02:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
with: { toolchain: nightly }
|
2021-11-23 00:42:47 +01:00
|
|
|
|
|
|
|
- name: doc tests
|
|
|
|
timeout-minutes: 40
|
2022-12-01 11:45:31 +01:00
|
|
|
run: cargo ci-doctest -- --nocapture
|