diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index a48b42e04..a05bd6072 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -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 . @@ -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 . diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 8a5479f98..138b09e8f 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -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 . @@ -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 diff --git a/flatpak.yml b/flatpak.yml index 00be7ad68..d245b9c1e 100644 --- a/flatpak.yml +++ b/flatpak.yml @@ -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"