1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-10 17:29:36 +00:00
actix-web/.github/workflows/ci.yml

122 lines
3.2 KiB
YAML
Raw Permalink 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]
2023-08-01 18:33:32 +00:00
merge_group:
types: [checks_requested]
push:
2021-02-12 21:53:21 +00:00
branches: [master]
2020-02-07 19:28:34 +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
2020-02-07 19:28:34 +00:00
jobs:
2024-05-14 05:30:58 +00:00
read_msrv:
name: Read MSRV
2024-06-07 13:51:05 +00:00
uses: actions-rust-lang/msrv/.github/workflows/msrv.yml@v0.1.0
2024-05-14 05:30:58 +00:00
2020-02-07 19:28:34 +00:00
build_and_test:
2024-05-14 05:30:58 +00:00
needs: read_msrv
2020-02-07 19:28:34 +00:00
strategy:
fail-fast: false
matrix:
2023-07-24 02:29:56 +00:00
# prettier-ignore
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:
2024-05-14 05:30:58 +00:00
- { name: msrv, version: "${{ needs.read_msrv.outputs.msrv }}" }
2023-08-26 17:19:32 +00:00
- { name: stable, version: stable }
2020-02-07 19:28:34 +00:00
2023-08-26 17:19:32 +00:00
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
2021-02-12 21:53:21 +00:00
runs-on: ${{ matrix.target.os }}
2020-02-07 19:28:34 +00:00
steps:
- uses: actions/checkout@v4
2020-02-07 19:28:34 +00:00
- name: Install nasm
if: matrix.target.os == 'windows-latest'
uses: ilammy/setup-nasm@v1.5.1
2021-03-17 00:38:42 +00:00
- name: Install OpenSSL
if: matrix.target.os == 'windows-latest'
2024-02-03 23:55:01 +00:00
shell: bash
2023-07-18 01:18:19 +00:00
run: |
2024-02-03 23:55:01 +00:00
set -e
choco install openssl --version=1.1.1.2100 -y --no-progress
echo 'OPENSSL_DIR=C:\Program Files\OpenSSL' >> $GITHUB_ENV
echo "RUSTFLAGS=-C target-feature=+crt-static" >> $GITHUB_ENV
2021-03-17 00:38:42 +00:00
2024-05-19 19:24:33 +00:00
- name: Setup mold linker
if: matrix.target.os == 'ubuntu-latest'
uses: rui314/setup-mold@v1
2023-08-26 17:19:32 +00:00
- name: Install Rust (${{ matrix.version.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
2021-03-17 00:38:42 +00:00
with:
2023-08-26 17:19:32 +00:00
toolchain: ${{ matrix.version.version }}
2021-03-17 00:38:42 +00:00
2024-05-14 05:30:58 +00:00
- name: Install just, cargo-hack, cargo-nextest, cargo-ci-cache-clean
uses: taiki-e/install-action@v2.38.0
2023-09-12 04:24:55 +00:00
with:
2024-05-14 05:30:58 +00:00
tool: just,cargo-hack,cargo-nextest,cargo-ci-cache-clean
2022-07-02 19:00:59 +00:00
2024-02-13 01:42:54 +00:00
- name: workaround MSRV issues
if: matrix.version.name == 'msrv'
2024-05-14 05:30:58 +00:00
run: just downgrade-for-msrv
2022-11-25 17:37:23 +00:00
2021-02-12 21:53:21 +00:00
- name: check minimal
2023-04-23 19:46:57 +00:00
run: cargo ci-check-min
2021-02-12 21:53:21 +00:00
2021-06-23 19:47:17 +00:00
- name: check default
2023-04-23 19:46:57 +00:00
run: cargo ci-check-default
2020-02-07 19:28:34 +00:00
- name: tests
2021-11-17 15:32:42 +00:00
timeout-minutes: 60
2024-05-14 05:30:58 +00:00
run: just test
2024-02-01 06:27:22 +00:00
- name: CI cache clean
run: cargo-ci-cache-clean
2022-03-10 15:03:55 +00:00
io-uring:
name: io-uring tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-03-10 15:03:55 +00:00
2023-04-02 02:27:14 +00:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
2023-09-12 04:24:55 +00:00
with:
toolchain: nightly
2022-03-10 15:03:55 +00:00
- 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-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:
- uses: actions/checkout@v4
2021-09-03 17:00:43 +00:00
2023-04-02 02:27:14 +00:00
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
2023-09-12 04:24:55 +00:00
with:
toolchain: nightly
2021-09-03 17:00:43 +00:00
2024-05-14 05:30:58 +00:00
- name: Install just
uses: taiki-e/install-action@v2.38.0
2024-05-14 05:30:58 +00:00
with:
tool: just
2021-09-03 17:00:43 +00:00
- name: doc tests
2024-05-14 05:30:58 +00:00
run: just test-docs