1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/.github/workflows/ci-post-merge.yml

101 lines
2.4 KiB
YAML
Raw Normal View History

2022-07-04 17:44:48 +02:00
name: CI (post-merge)
2021-12-31 09:32:04 +01:00
on:
push: { branches: [master] }
2023-04-09 20:41:57 +02:00
permissions: { contents: read }
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2021-12-31 09:32:04 +01:00
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 }
2023-09-16 01:30:38 +02:00
name: ${{ matrix.target.name }} / nightly
2021-12-31 09:32:04 +01:00
runs-on: ${{ matrix.target.os }}
services:
redis:
image: redis:5.0.7
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v4
2021-12-31 09:32:04 +01:00
2023-09-16 01:30:38 +02:00
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
2021-12-31 09:32:04 +01:00
with:
2023-09-16 01:30:38 +02:00
toolchain: nightly
2021-12-31 09:32:04 +01:00
- uses: taiki-e/install-action@v2.23.1
2023-09-16 01:30:38 +02:00
with:
tool: cargo-hack
2021-12-31 09:32:04 +01:00
- name: check minimal
run: cargo ci-min
2021-12-31 09:32:04 +01:00
2022-05-25 15:07:31 +02:00
- name: check minimal + examples
run: cargo ci-check-min-examples
2021-12-31 09:32:04 +01:00
- name: check default
run: cargo ci-check
2021-12-31 09:32:04 +01:00
- name: tests
timeout-minutes: 40
run: cargo ci-test
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
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
2023-09-16 01:30:38 +02:00
# prettier-ignore
2021-12-31 09:32:04 +01:00
matrix:
target:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
2023-09-16 01:30:38 +02:00
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
name: ${{ matrix.target.name }} / nightly
2021-12-31 09:32:04 +01:00
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
2021-12-31 09:32:04 +01:00
2023-09-16 01:30:38 +02:00
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
with:
2023-09-16 01:30:38 +02:00
toolchain: nightly
2022-07-04 17:43:33 +02:00
- uses: taiki-e/install-action@v2.23.1
2023-09-16 01:30:38 +02:00
with:
tool: cargo-hack
2021-12-31 09:32:04 +01:00
- name: check minimal
2022-12-01 11:45:31 +01:00
run: cargo ci-min
2021-12-31 09:32:04 +01: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-12-31 09:32:04 +01:00
- name: check default
2022-12-01 11:45:31 +01:00
run: cargo ci-check
2021-12-31 09:32:04 +01:00
- name: tests
timeout-minutes: 40
2022-12-01 11:45:31 +01:00
run: cargo ci-test --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