Skip to content

Commit

Permalink
Speedup CI (#1830)
Browse files Browse the repository at this point in the history
- Disable incremental build since CI always build from scratch
 - Use sparse crates.io registry
 - Use `Swatinem/rust-cache@v2` for caching in job `test`
 - Use `cargo-nextest` to speedup running tests in job `test`
 - Install `mingw-w64-*-gcc` in windows instead of the entire toolchain
 - Remove the unnecessary `cargo-build` step in job `test`

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
  • Loading branch information
NobodyXu committed May 15, 2023
1 parent 7e7b116 commit 9de702c
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
env:
REQWEST_TEST_BODY_FULL: 1
RUST_BACKTRACE: 1
CARGO_INCREMENTAL: 0
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse

jobs:
ci-pass:
Expand Down Expand Up @@ -109,11 +111,15 @@ jobs:
rust: stable-x86_64-pc-windows-gnu
target: x86_64-pc-windows-gnu
features: "--features blocking,gzip,brotli,deflate,json,multipart"
package_name: mingw-w64-x86_64-gcc
mingw64_path: "C:\\msys64\\mingw64\\bin"
- name: windows / stable-i686-gnu
os: windows-latest
rust: stable-i686-pc-windows-gnu
target: i686-pc-windows-gnu
features: "--features blocking,gzip,brotli,deflate,json,multipart"
package_name: mingw-w64-i686-gcc
mingw64_path: "C:\\msys64\\mingw32\\bin"

- name: "feat.: default-tls disabled"
features: "--no-default-features"
Expand Down Expand Up @@ -158,30 +164,32 @@ jobs:
toolchain: ${{ matrix.rust || 'stable' }}
targets: ${{ matrix.target }}

- name: Add mingw32 to path for i686-gnu
- name: Add mingw-w64 to path for i686-gnu
run: |
echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH
echo "${{ matrix.mingw64_path }}" >> $GITHUB_PATH
echo "C:\msys64\usr\bin" >> $GITHUB_PATH
if: matrix.target == 'i686-pc-windows-gnu'
if: matrix.mingw64_path
shell: bash
- name: Add mingw64 to path for x86_64-gnu
run: |
echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
echo "C:\msys64\usr\bin" >> $GITHUB_PATH
if: matrix.target == 'x86_64-pc-windows-gnu'
shell: bash
- name: Update gcc
if: matrix.target == 'x86_64-pc-windows-gnu'
run: pacman.exe -Sy --noconfirm mingw-w64-x86_64-toolchain

- name: Update gcc
if: matrix.target == 'i686-pc-windows-gnu'
run: pacman.exe -Sy --noconfirm mingw-w64-i686-toolchain
if: matrix.package_name
run: pacman.exe -Sy --noconfirm ${{ matrix.package_name }}

- name: Build
run: cargo build ${{ matrix.features }}
- name: Create Cargo.lock
run: cargo update

- name: Test
run: cargo test ${{ matrix.features }} ${{ matrix.test-features }} -- --test-threads=1
- uses: Swatinem/rust-cache@v2

- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest

- name: Run tests
run: |
set -euxo pipefail
cargo nextest run --locked --workspace ${{ matrix.features }} ${{ matrix.test-features }}
cargo test --locked --workspace --doc ${{ matrix.features }} ${{ matrix.test-features }}
shell: bash

unstable:
name: "unstable features"
Expand Down

0 comments on commit 9de702c

Please sign in to comment.