Skip to content

Commit

Permalink
Removes CI step to run Clippy (obhq#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Mar 16, 2024
1 parent 48a82eb commit c56457c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
fi
done
if: ${{ steps.qt-cache.outputs.cache-hit != 'true' }}
- name: Update Rust-Lang
- name: Update Rust
run: rustup update stable
- name: Run CMake
run: cmake -DOB_BUILD_LLVM:BOOL=OFF --preset mac-release .
Expand All @@ -110,9 +110,6 @@ jobs:
- name: Run tests
run: cargo test --workspace --exclude core
working-directory: src
- name: Run Clippy
run: cargo clippy --release
working-directory: src
- name: Create Application Bundle
run: |
cmake --install build --prefix .
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
if: ${{ steps.restore-vulkan.outputs.cache-hit != 'true' }}
- name: Set Vulkan SDK path
run: echo "VULKAN_SDK=C:\VulkanSDK" >> $env:GITHUB_ENV
- name: Update Rust-Lang
- name: Update Rust
run: rustup update stable
- name: Run CMake
run: cmake -DOB_BUILD_LLVM:BOOL=OFF --preset windows-release .
Expand All @@ -106,9 +106,6 @@ jobs:
- name: Run tests
run: cargo test --workspace --exclude core
working-directory: src
- name: Run Clippy
run: cargo clippy --release
working-directory: src
- name: Export artifacts
run: cmake --install build --prefix dist
- name: Upload artifacts
Expand Down
1 change: 0 additions & 1 deletion flatpak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ modules:
- cmake -DOB_BUILD_LLVM:BOOL=OFF --preset linux-release .
- cmake --build --preset linux-release
- cargo test --manifest-path src/Cargo.toml --workspace --exclude core
- cargo clippy --manifest-path src/Cargo.toml --release
- cmake --install build --prefix "$FLATPAK_DEST"
- mkdir -pv "$FLATPAK_DEST/lib"
- cp -v /usr/lib/sdk/llvm17/lib/libLLVM-17.so "$FLATPAK_DEST/lib"
Expand Down

0 comments on commit c56457c

Please sign in to comment.