1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/.github/workflows/ci.yml

136 lines
4 KiB
YAML
Raw Normal View History

2021-02-12 21:53:21 +00:00
name: CI
2020-02-07 19:28:34 +00:00
on:
pull_request:
types: [opened, synchronize, reopened]
push:
2021-02-12 21:53:21 +00:00
branches: [master]
2020-02-07 19:28:34 +00:00
permissions:
2023-03-11 23:19:03 +00:00
contents: read # to fetch code (actions/checkout)
2023-03-15 13:32:55 +00:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-02-07 19:28:34 +00:00
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
2021-02-12 21:53:21 +00:00
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
2020-02-07 19:28:34 +00:00
version:
2022-08-27 12:14:16 +00:00
- 1.59.0 # MSRV
2020-02-07 19:28:34 +00:00
- stable
2021-02-12 21:53:21 +00:00
name: ${{ matrix.target.name }} / ${{ matrix.version }}
runs-on: ${{ matrix.target.os }}
2020-02-07 19:28:34 +00:00
2021-03-29 12:01:37 +00:00
env:
2021-09-08 16:42:14 +00:00
CI: 1
CARGO_INCREMENTAL: 0
2021-03-29 12:01:37 +00:00
2020-02-07 19:28:34 +00:00
steps:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2020-02-07 19:28:34 +00:00
2021-03-17 00:38:42 +00:00
- name: Install OpenSSL
if: matrix.target.os == 'windows-latest'
run: choco install openssl
- name: Set OpenSSL dir in env
if: matrix.target.os == 'windows-latest'
run: echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append
2021-03-17 00:38:42 +00:00
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-${{ matrix.target.triple }}
profile: minimal
override: true
2022-07-02 19:00:59 +00:00
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
2022-07-02 16:12:24 +00:00
- name: workaround MSRV issues
if: matrix.version != 'stable'
run: |
2022-07-02 16:40:03 +00:00
cargo install cargo-edit --version=0.8.0
2022-07-02 16:12:24 +00:00
cargo add const-str@0.3 --dev -p=actix-web
cargo add const-str@0.3 --dev -p=awc
2020-12-28 00:44:15 +00:00
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
2021-10-20 01:27:30 +00:00
with: { command: generate-lockfile }
2020-12-28 00:44:15 +00:00
- name: Cache Dependencies
2021-02-16 09:28:14 +00:00
uses: Swatinem/rust-cache@v1.2.0
2020-12-28 00:44:15 +00:00
2022-11-25 17:37:23 +00:00
- name: workaround MSRV issues
if: matrix.version != 'stable'
run: |
cargo update -p=zstd-sys --precise=2.0.1+zstd.1.5.2
2021-02-12 21:53:21 +00:00
- name: check minimal
2020-02-07 19:28:34 +00:00
uses: actions-rs/cargo@v1
with: { command: ci-check-min }
2021-02-12 21:53:21 +00:00
2021-06-23 19:47:17 +00:00
- name: check default
uses: actions-rs/cargo@v1
with: { command: ci-check-default }
2020-02-07 19:28:34 +00:00
- name: tests
2021-11-17 15:32:42 +00:00
timeout-minutes: 60
run: |
cargo test --lib --tests -p=actix-router --all-features
cargo test --lib --tests -p=actix-http --all-features
cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls
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 15:03:55 +00:00
- name: Clear the cargo caches
run: |
2023-03-15 13:32:55 +00:00
cargo install cargo-cache --version 0.8.3 --no-default-features --features ci-autoclean
2022-03-10 15:03:55 +00:00
cargo-cache
io-uring:
name: io-uring tests
runs-on: ubuntu-latest
steps:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2022-03-10 15:03:55 +00:00
- uses: dtolnay/rust-toolchain@stable
2022-03-10 15:03:55 +00:00
- name: Generate Cargo.lock
run: cargo generate-lockfile
2022-03-10 15:03:55 +00:00
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.3.0
- name: tests (io-uring)
timeout-minutes: 60
run: >
2023-03-15 13:32:55 +00: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-10-20 01:27:30 +00:00
2021-09-03 17:00:43 +00:00
rustdoc:
2021-11-23 15:12:55 +00:00
name: doc tests
2021-09-03 17:00:43 +00:00
runs-on: ubuntu-latest
steps:
2023-03-11 23:19:03 +00:00
- uses: actions/checkout@v3
2021-09-03 17:00:43 +00:00
- uses: dtolnay/rust-toolchain@nightly
2021-09-03 17:00:43 +00:00
- name: Generate Cargo.lock
run: cargo generate-lockfile
2021-09-03 17:00:43 +00:00
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.3.0
- name: doc tests
run: cargo ci-doctest
2021-11-17 15:32:42 +00:00
timeout-minutes: 60