1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/.github/workflows/ci.yml

156 lines
4.0 KiB
YAML
Raw Normal View History

2021-03-22 12:46:02 +01:00
name: CI
on:
2023-09-16 01:30:38 +02:00
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
push:
branches: [master]
2023-04-09 20:41:57 +02:00
permissions: { contents: read }
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2021-03-22 12:46:02 +01:00
jobs:
build_and_test_linux:
strategy:
fail-fast: false
matrix:
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
version:
- { name: msrv, version: 1.75.0 }
2023-09-16 01:30:38 +02:00
- { name: stable, version: stable }
2021-03-22 12:46:02 +01:00
2023-09-16 01:30:38 +02:00
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
2021-03-22 12:46:02 +01:00
runs-on: ${{ matrix.target.os }}
services:
redis:
image: redis:6
2021-03-22 12:46:02 +01:00
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
--entrypoint redis-server
2021-03-22 12:46:02 +01:00
steps:
- uses: actions/checkout@v4
2021-03-22 12:46:02 +01:00
2023-09-16 01:30:38 +02:00
- name: Install Rust (${{ matrix.version.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
with:
2023-09-16 01:30:38 +02:00
toolchain: ${{ matrix.version.version }}
2022-07-04 17:43:33 +02:00
2023-12-26 05:05:35 +01:00
- name: Install cargo-hack and cargo-ci-cache-clean
uses: taiki-e/install-action@v2.42.14
2023-09-16 01:30:38 +02:00
with:
2023-12-26 05:05:35 +01:00
tool: cargo-hack,cargo-ci-cache-clean
2021-03-22 12:46:02 +01:00
2023-09-16 01:30:38 +02:00
# - name: workaround MSRV issues
# if: matrix.version.name == 'msrv'
# run: |
# cargo update -p=time:0.3.20 --precise=0.3.16
2023-03-23 13:15:25 +01:00
2021-03-22 12:46:02 +01:00
- name: check minimal
2022-12-01 11:45:31 +01:00
run: cargo ci-min
2021-06-27 08:02:38 +02:00
2022-05-25 15:07:31 +02:00
- name: check minimal + examples
2022-12-01 11:45:31 +01:00
run: cargo ci-check-min-examples
2021-06-27 08:02:38 +02:00
- name: check default
2022-12-01 11:45:31 +01:00
run: cargo ci-check
2021-03-22 12:46:02 +01:00
- name: tests
2021-06-27 08:02:38 +02:00
timeout-minutes: 40
2022-12-01 11:45:31 +01:00
run: cargo ci-test
2021-06-27 08:02:38 +02:00
2023-12-26 04:57:57 +01:00
- name: CI cache clean
run: cargo-ci-cache-clean
2021-03-22 12:46:02 +01:00
build_and_test_other:
strategy:
fail-fast: false
matrix:
2023-09-16 01:30:38 +02:00
# prettier-ignore
2021-03-22 12:46:02 +01:00
target:
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
2023-09-16 01:30:38 +02:00
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
2021-03-22 12:46:02 +01:00
version:
- { name: msrv, version: 1.75.0 }
2023-09-16 01:30:38 +02:00
- { name: stable, version: stable }
2021-03-22 12:46:02 +01:00
2023-09-16 01:30:38 +02:00
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
2021-03-22 12:46:02 +01:00
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
2021-03-22 12:46:02 +01:00
- name: Install OpenSSL
if: matrix.target.os == 'windows-latest'
shell: bash
run: |
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
2023-09-16 01:30:38 +02:00
- name: Install Rust (${{ matrix.version.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
with:
2023-09-16 01:30:38 +02:00
toolchain: ${{ matrix.version.version }}
2021-03-22 12:46:02 +01:00
2024-06-20 03:57:44 +02:00
- name: Install cargo-hack, cargo-ci-cache-clean
uses: taiki-e/install-action@v2.42.14
2023-09-16 01:30:38 +02:00
with:
2023-12-26 05:05:35 +01:00
tool: cargo-hack,cargo-ci-cache-clean
2022-07-04 17:43:33 +02:00
2023-09-16 01:30:38 +02:00
# - name: workaround MSRV issues
# if: matrix.version.name == 'msrv'
# run: |
# cargo update -p=time:0.3.20 --precise=0.3.16
2023-03-23 13:15:25 +01:00
2021-03-22 12:46:02 +01:00
- name: check minimal
2022-12-01 11:45:31 +01:00
run: cargo ci-min
2021-06-27 08:02:38 +02:00
2022-05-25 15:07:31 +02:00
- name: check minimal + examples
2022-12-01 11:45:31 +01:00
run: cargo ci-check-min-examples
2021-06-27 08:02:38 +02:00
- name: check default
2022-12-01 11:45:31 +01:00
run: cargo ci-check
2021-03-22 12:46:02 +01:00
- name: tests
2021-06-27 08:02:38 +02:00
timeout-minutes: 40
2024-03-13 00:30:06 +01:00
run: cargo ci-test --exclude=actix-session --exclude=actix-limitation
2021-03-22 12:46:02 +01:00
2023-12-26 04:57:57 +01:00
- name: CI cache clean
run: cargo-ci-cache-clean
doc_tests:
2024-06-11 04:52:15 +02:00
name: Documentation Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.9.0
2023-09-16 01:30:38 +02:00
with:
toolchain: nightly
2024-06-11 04:56:49 +02:00
- name: Install just
uses: taiki-e/install-action@v2.42.14
2024-06-11 04:56:49 +02:00
with:
tool: just
2024-06-11 04:52:15 +02:00
- name: Test docs
run: just test-docs
- name: Build docs
run: just doc