2021-02-12 22:53:21 +01:00
|
|
|
name: CI
|
2020-02-07 20:28:34 +01:00
|
|
|
|
2020-07-22 01:28:33 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
2023-08-01 20:33:32 +02:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2020-07-22 01:28:33 +02:00
|
|
|
push:
|
2021-02-12 22:53:21 +01:00
|
|
|
branches: [master]
|
2020-02-07 20:28:34 +01:00
|
|
|
|
2022-11-04 01:42:22 +01:00
|
|
|
permissions:
|
2023-07-24 04:29:56 +02:00
|
|
|
contents: read
|
2022-11-04 01:42:22 +01:00
|
|
|
|
2023-03-15 14:32:55 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-02-07 20:28:34 +01:00
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-07-24 04:29:56 +02:00
|
|
|
# prettier-ignore
|
2021-02-12 22:53:21 +01:00
|
|
|
target:
|
|
|
|
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
|
|
|
|
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
|
2023-03-15 06:39:02 +01:00
|
|
|
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
|
2020-02-07 20:28:34 +01:00
|
|
|
version:
|
2023-08-26 19:19:32 +02:00
|
|
|
- { name: msrv, version: 1.68.0 }
|
|
|
|
- { name: stable, version: stable }
|
2020-02-07 20:28:34 +01:00
|
|
|
|
2023-08-26 19:19:32 +02:00
|
|
|
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
|
2021-02-12 22:53:21 +01:00
|
|
|
runs-on: ${{ matrix.target.os }}
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
steps:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-02-07 20:28:34 +01:00
|
|
|
|
2021-03-17 01:38:42 +01:00
|
|
|
- name: Install OpenSSL
|
2023-03-15 06:39:02 +01:00
|
|
|
if: matrix.target.os == 'windows-latest'
|
2023-07-18 03:18:19 +02:00
|
|
|
run: choco install openssl -y --forcex64 --no-progress
|
2023-03-15 06:39:02 +01:00
|
|
|
- name: Set OpenSSL dir in env
|
|
|
|
if: matrix.target.os == 'windows-latest'
|
2023-07-18 03:18:19 +02:00
|
|
|
run: |
|
|
|
|
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
|
2021-03-17 01:38:42 +01:00
|
|
|
|
2023-08-26 19:19:32 +02:00
|
|
|
- name: Install Rust (${{ matrix.version.name }})
|
2023-12-04 02:02:25 +01:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2021-03-17 01:38:42 +01:00
|
|
|
with:
|
2023-08-26 19:19:32 +02:00
|
|
|
toolchain: ${{ matrix.version.version }}
|
2021-03-17 01:38:42 +01:00
|
|
|
|
2022-07-02 21:00:59 +02:00
|
|
|
- name: Install cargo-hack
|
2023-11-27 03:54:42 +01:00
|
|
|
uses: taiki-e/install-action@v2.21.19
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
tool: cargo-hack
|
2022-07-02 21:00:59 +02:00
|
|
|
|
2023-08-26 19:19:32 +02:00
|
|
|
- name: workaround MSRV issues
|
2023-09-12 06:16:41 +02:00
|
|
|
if: matrix.version.name == 'msrv'
|
2023-08-26 19:19:32 +02:00
|
|
|
run: |
|
|
|
|
cargo update -p=clap --precise=4.3.24
|
2023-08-27 01:07:11 +02:00
|
|
|
cargo update -p=clap_lex --precise=0.5.0
|
2023-09-12 06:16:41 +02:00
|
|
|
cargo update -p=anstyle --precise=1.0.2
|
2022-11-25 18:37:23 +01:00
|
|
|
|
2021-02-12 22:53:21 +01:00
|
|
|
- name: check minimal
|
2023-04-23 21:46:57 +02:00
|
|
|
run: cargo ci-check-min
|
2021-02-12 22:53:21 +01:00
|
|
|
|
2021-06-23 21:47:17 +02:00
|
|
|
- name: check default
|
2023-04-23 21:46:57 +02:00
|
|
|
run: cargo ci-check-default
|
2020-02-07 20:28:34 +01:00
|
|
|
|
|
|
|
- name: tests
|
2021-11-17 16:32:42 +01:00
|
|
|
timeout-minutes: 60
|
2021-11-22 02:19:09 +01:00
|
|
|
run: |
|
|
|
|
cargo test --lib --tests -p=actix-router --all-features
|
|
|
|
cargo test --lib --tests -p=actix-http --all-features
|
2023-08-29 02:11:11 +02: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-11-22 02:19:09 +01: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
|
|
|
|
|
2022-03-10 16:03:55 +01:00
|
|
|
- name: Clear the cargo caches
|
|
|
|
run: |
|
2023-03-15 14:32:55 +01:00
|
|
|
cargo install cargo-cache --version 0.8.3 --no-default-features --features ci-autoclean
|
2022-03-10 16:03:55 +01:00
|
|
|
cargo-cache
|
|
|
|
|
|
|
|
io-uring:
|
|
|
|
name: io-uring tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-10 16:03:55 +01:00
|
|
|
|
2023-04-02 04:27:14 +02:00
|
|
|
- name: Install Rust
|
2023-12-04 02:02:25 +01:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
2022-03-10 16:03:55 +01:00
|
|
|
|
2021-11-22 02:19:09 +01:00
|
|
|
- name: tests (io-uring)
|
|
|
|
timeout-minutes: 60
|
|
|
|
run: >
|
2023-03-15 14:32:55 +01:00
|
|
|
sudo bash -c "ulimit -Sl 512 && ulimit -Hl 512 && PATH=$PATH:/usr/share/rust/.cargo/bin && RUSTUP_TOOLCHAIN=stable cargo test --lib --tests -p=actix-files --all-features"
|
|
|
|
|
2021-09-03 19:00:43 +02:00
|
|
|
rustdoc:
|
2021-11-23 16:12:55 +01:00
|
|
|
name: doc tests
|
2021-09-03 19:00:43 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-12 06:44:47 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-09-03 19:00:43 +02:00
|
|
|
|
2023-04-02 04:27:14 +02:00
|
|
|
- name: Install Rust (nightly)
|
2023-12-04 02:02:25 +01:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.6.0
|
2023-09-12 06:24:55 +02:00
|
|
|
with:
|
|
|
|
toolchain: nightly
|
2021-09-03 19:00:43 +02:00
|
|
|
|
|
|
|
- name: doc tests
|
2022-11-25 18:00:59 +01:00
|
|
|
run: cargo ci-doctest
|
2021-11-17 16:32:42 +01:00
|
|
|
timeout-minutes: 60
|