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

190 lines
5.7 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
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 }
2021-10-20 21:32:05 +00:00
- { name: Windows, os: windows-2022, triple: x86_64-pc-windows-msvc }
2020-02-07 19:28:34 +00:00
version:
2021-10-19 00:59:28 +00:00
- 1.52.0 # MSRV
2020-02-07 19:28:34 +00:00
- stable
- nightly
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
VCPKGRS_DYNAMIC: 1
2020-02-07 19:28:34 +00:00
steps:
2020-08-13 07:04:50 +00:00
- uses: actions/checkout@v2
2020-02-07 19:28:34 +00:00
2021-03-17 00:38:42 +00:00
# install OpenSSL on Windows
2021-10-20 21:32:05 +00:00
# TODO: GitHub actions docs state that OpenSSL is
# already installed on these Windows machines somewhere
2021-03-17 00:38:42 +00:00
- name: Set vcpkg root
if: matrix.target.triple == 'x86_64-pc-windows-msvc'
run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Install OpenSSL
if: matrix.target.triple == 'x86_64-pc-windows-msvc'
run: vcpkg install openssl:x64-windows
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-${{ matrix.target.triple }}
profile: minimal
override: true
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
- name: Install cargo-hack
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-hack
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
- name: tests (io-uring)
if: matrix.target.os == 'ubuntu-latest'
timeout-minutes: 60
run: >
sudo bash -c "ulimit -Sl 512
&& ulimit -Hl 512
&& PATH=$PATH:/usr/share/rust/.cargo/bin
&& RUSTUP_TOOLCHAIN=${{ matrix.version }} cargo test --lib --tests -p=actix-files --all-features"
2020-02-07 19:28:34 +00:00
2021-10-20 01:27:30 +00:00
- name: Clear the cargo caches
run: |
cargo install cargo-cache --version 0.6.3 --no-default-features --features ci-autoclean
cargo-cache
2021-10-20 21:32:05 +00:00
ci_feature_powerset_check:
name: Verify Feature Combinations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with: { command: generate-lockfile }
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
- name: Install cargo-hack
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-hack
- name: check feature combinations
uses: actions-rs/cargo@v1
with: { command: ci-check-all-feature-powerset }
- name: check feature combinations
uses: actions-rs/cargo@v1
with: { command: ci-check-all-feature-powerset-linux }
2021-10-20 21:32:05 +00:00
2021-10-20 01:27:30 +00:00
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with: { command: generate-lockfile }
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
2020-02-07 19:28:34 +00:00
- name: Generate coverage file
2021-10-20 01:27:30 +00:00
if: github.ref == 'refs/heads/master'
2020-02-07 19:28:34 +00:00
run: |
2020-07-06 19:00:18 +00:00
cargo install cargo-tarpaulin --vers "^0.13"
2021-11-15 18:11:51 +00:00
cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose
2020-02-07 19:28:34 +00:00
- name: Upload to Codecov
2021-10-20 01:27:30 +00:00
if: github.ref == 'refs/heads/master'
2020-02-07 19:28:34 +00:00
uses: codecov/codecov-action@v1
2021-10-20 01:27:30 +00:00
with: { file: cobertura.xml }
2020-12-28 00:44:15 +00:00
2021-09-03 17:00:43 +00:00
rustdoc:
name: rustdoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust (nightly)
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with: { command: generate-lockfile }
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.3.0
# - name: Install cargo-hack
# uses: actions-rs/cargo@v1
# with:
# command: install
# args: cargo-hack
2021-09-03 17:00:43 +00:00
- name: doc tests
uses: actions-rs/cargo@v1
2021-11-17 15:32:42 +00:00
timeout-minutes: 60
2021-09-03 17:00:43 +00:00
with: { command: ci-doctest }