Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more ci clean up #35

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: RocksDB CI

on: [push, pull_request]
env:
RUST_VERSION: 1.75.0

jobs:
style:
Expand All @@ -15,7 +13,6 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
components: rustfmt

- name: Run rustfmt
Expand All @@ -31,7 +28,6 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
components: rust-docs

- name: Run cargo rustdoc
Expand All @@ -47,7 +43,6 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy

- name: Run clippy
Expand Down Expand Up @@ -83,7 +78,6 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
target: ${{ matrix.target }}

- name: Remove msys64 # Workaround to resolve link error with C:\msys64\mingw64\bin\libclang.dll
Expand Down
Loading