Skip to content

Commit

Permalink
Merge pull request rust-lang#212 from tgross35/ci-improvements
Browse files Browse the repository at this point in the history
Add CI caching and extra checks
  • Loading branch information
tgross35 authored Aug 15, 2024
2 parents b125d38 + 392dc96 commit 238553a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 20 deletions.
59 changes: 39 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,29 @@
name: CI
on: [push, pull_request]

env:
RUSTDOCFLAGS: -D warnings
RUSTFLAGS: -D warnings

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable, beta, nightly]
rust: ["1.70", stable, beta, nightly]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2
- run: cargo test
- name: Integration test
run: cargo test --manifest-path test-crate/Cargo.toml

rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup component add rustfmt
- run: cargo fmt -- --check

cross_compile_test:
name: Test Cross Compile - ${{ matrix.platform.target }}
needs: [ test ]
Expand Down Expand Up @@ -71,10 +64,10 @@ jobs:
rustup update stable --no-self-update
rustup default stable
rustup target add ${{ matrix.platform.target }}
- run: cargo fmt -- --check
- uses: taiki-e/install-action@v2
with:
tool: cross
- uses: Swatinem/rust-cache@v2
- name: cross test
run: cross test -vv --target ${{ matrix.platform.target }}
working-directory: test-crate
Expand All @@ -94,14 +87,40 @@ jobs:
platform:
- target: aarch64-apple-ios
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.platform.target }}
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup target add ${{ matrix.platform.target }}
- uses: Swatinem/rust-cache@v2
- name: build
run: cargo build -vv --target ${{ matrix.platform.target }}
working-directory: test-crate
env:
# If this isn't specified the default is iOS 7, for which zlib-ng will not compile due to the lack of thread-local storage.
IPHONEOS_DEPLOYMENT_TARGET: 16

rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup component add rustfmt
- run: cargo fmt --all -- --check

doc:
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
rustup update nightly --no-self-update
rustup default nightly
- uses: Swatinem/rust-cache@v2
- run: cargo doc

2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -946,6 +946,8 @@ impl Config {
Ok(VsVers::Vs16) => "Visual Studio 16 2019",
Ok(VsVers::Vs15) => "Visual Studio 15 2017",
Ok(VsVers::Vs14) => "Visual Studio 14 2015",
// This was deprecated recently (2024-07). Ignore the warning for now.
#[allow(deprecated)]
Ok(VsVers::Vs12) => "Visual Studio 12 2013",
Ok(_) => panic!(
"Visual studio version detected but this crate \
Expand Down

0 comments on commit 238553a

Please sign in to comment.