2022-02-01 15:24:35 +00:00
|
|
|
name: CI (post-merge)
|
2021-12-25 02:33:37 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
2022-11-04 00:42:22 +00:00
|
|
|
permissions:
|
2023-07-24 02:29:56 +00:00
|
|
|
contents: read
|
2023-03-15 13:32:55 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2022-11-04 00:42:22 +00:00
|
|
|
|
2021-12-25 02:33:37 +00:00
|
|
|
jobs:
|
2021-12-31 08:38:58 +00:00
|
|
|
build_and_test_nightly:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-07-24 02:29:56 +00:00
|
|
|
# prettier-ignore
|
2021-12-31 08:38:58 +00:00
|
|
|
target:
|
|
|
|
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
|
|
|
|
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
|
2023-07-24 02:29:56 +00:00
|
|
|
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
|
2021-12-31 08:38:58 +00:00
|
|
|
version:
|
2023-08-26 17:19:32 +00:00
|
|
|
- { name: nightly, version: nightly }
|
2021-12-31 08:38:58 +00:00
|
|
|
|
2023-08-26 17:19:32 +00:00
|
|
|
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
|
2021-12-31 08:38:58 +00:00
|
|
|
runs-on: ${{ matrix.target.os }}
|
|
|
|
|
|
|
|
steps:
|
2023-09-12 04:44:47 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-12-31 08:38:58 +00:00
|
|
|
|
|
|
|
- name: Install OpenSSL
|
2023-07-18 01:18:19 +00:00
|
|
|
if: matrix.target.os == 'windows-latest'
|
|
|
|
run: choco install openssl -y --forcex64 --no-progress
|
|
|
|
- name: Set OpenSSL dir in env
|
|
|
|
if: matrix.target.os == 'windows-latest'
|
2023-04-23 19:46:57 +00:00
|
|
|
run: |
|
2023-07-18 01:18:19 +00:00
|
|
|
echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
|
|
echo 'OPENSSL_DIR=C:\Program Files\OpenSSL' | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
|
|
|
2023-08-26 17:19:32 +00:00
|
|
|
- name: Install Rust (${{ matrix.version.name }})
|
2023-12-04 01:02:25 +00:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2023-07-18 01:18:19 +00:00
|
|
|
with:
|
2023-08-26 17:19:32 +00:00
|
|
|
toolchain: ${{ matrix.version.version }}
|
2021-12-31 08:38:58 +00:00
|
|
|
|
2022-07-02 19:00:59 +00:00
|
|
|
- name: Install cargo-hack
|
2024-01-01 14:10:13 +00:00
|
|
|
uses: taiki-e/install-action@v2.23.7
|
2023-09-12 04:24:55 +00:00
|
|
|
with:
|
|
|
|
tool: cargo-hack
|
2022-07-02 19:00:59 +00:00
|
|
|
|
2021-12-31 08:38:58 +00:00
|
|
|
- name: check minimal
|
2023-04-23 19:46:57 +00:00
|
|
|
run: cargo ci-check-min
|
2021-12-31 08:38:58 +00:00
|
|
|
|
|
|
|
- name: check default
|
2023-04-23 19:46:57 +00:00
|
|
|
run: cargo ci-check-default
|
2021-12-31 08:38:58 +00:00
|
|
|
|
|
|
|
- name: tests
|
|
|
|
timeout-minutes: 60
|
|
|
|
run: |
|
|
|
|
cargo test --lib --tests -p=actix-router --all-features
|
|
|
|
cargo test --lib --tests -p=actix-http --all-features
|
2023-08-29 00:14:54 +00:00
|
|
|
cargo test --lib --tests -p=actix-web --features=rustls-0_20,rustls-0_21,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls
|
2021-12-31 08:38:58 +00:00
|
|
|
cargo test --lib --tests -p=actix-web-codegen --all-features
|
|
|
|
cargo test --lib --tests -p=awc --all-features
|
|
|
|
cargo test --lib --tests -p=actix-http-test --all-features
|
|
|
|
cargo test --lib --tests -p=actix-test --all-features
|
|
|
|
cargo test --lib --tests -p=actix-files
|
|
|
|
cargo test --lib --tests -p=actix-multipart --all-features
|
|
|
|
cargo test --lib --tests -p=actix-web-actors --all-features
|
|
|
|
|
|
|
|
- name: Clear the cargo caches
|
|
|
|
run: |
|
2023-12-24 16:47:46 +00:00
|
|
|
cargo --locked install cargo-cache --version 0.8.3 --no-default-features --features ci-autoclean
|
2021-12-31 08:38:58 +00:00
|
|
|
cargo-cache
|
|
|
|
|
2021-12-25 02:33:37 +00:00
|
|
|
ci_feature_powerset_check:
|
|
|
|
name: Verify Feature Combinations
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-01 11:45:26 +00:00
|
|
|
|
2021-12-25 02:33:37 +00:00
|
|
|
steps:
|
2023-09-12 04:44:47 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-12-25 02:33:37 +00:00
|
|
|
|
2023-07-18 01:18:19 +00:00
|
|
|
- name: Install Rust
|
2023-12-04 01:02:25 +00:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2021-12-25 02:33:37 +00:00
|
|
|
|
2022-07-02 19:00:59 +00:00
|
|
|
- name: Install cargo-hack
|
2024-01-01 14:10:13 +00:00
|
|
|
uses: taiki-e/install-action@v2.23.7
|
2023-09-12 04:24:55 +00:00
|
|
|
with:
|
|
|
|
tool: cargo-hack
|
2022-07-02 19:00:59 +00:00
|
|
|
|
2021-12-25 02:33:37 +00:00
|
|
|
- name: check feature combinations
|
2022-11-25 17:00:59 +00:00
|
|
|
run: cargo ci-check-all-feature-powerset
|
|
|
|
|
2021-12-25 02:33:37 +00:00
|
|
|
- name: check feature combinations
|
2022-11-25 17:00:59 +00:00
|
|
|
run: cargo ci-check-all-feature-powerset-linux
|
2021-12-25 02:33:37 +00:00
|
|
|
|
2022-02-15 14:40:26 +00:00
|
|
|
nextest:
|
|
|
|
name: nextest
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-01 11:45:26 +00:00
|
|
|
|
2022-02-15 14:40:26 +00:00
|
|
|
steps:
|
2023-09-12 04:44:47 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-15 14:40:26 +00:00
|
|
|
|
2023-07-18 01:18:19 +00:00
|
|
|
- name: Install Rust
|
2023-12-04 01:02:25 +00:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2022-02-15 14:40:26 +00:00
|
|
|
|
2022-07-02 19:00:59 +00:00
|
|
|
- name: Install nextest
|
2024-01-01 14:10:13 +00:00
|
|
|
uses: taiki-e/install-action@v2.23.7
|
2023-09-12 04:24:55 +00:00
|
|
|
with:
|
|
|
|
tool: nextest
|
2022-07-02 19:00:59 +00:00
|
|
|
|
2022-02-15 14:40:26 +00:00
|
|
|
- name: Test with cargo-nextest
|
2022-11-25 17:00:59 +00:00
|
|
|
run: cargo nextest run
|