disable clippy --all on windows for now (due to frida issues)

This commit is contained in:
Dominik Maier 2021-04-30 16:03:04 +02:00
parent 9ee427a1fa
commit 730df64712

View File

@ -26,11 +26,12 @@ jobs:
key: clippy-cargo-${{ hashFiles('**/Cargo.toml') }} key: clippy-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: Add clippy - name: Add clippy
run: rustup component add clippy run: rustup component add clippy
- name: Run clippy #- name: Run clippy
uses: actions-rs/cargo@v1 # uses: actions-rs/cargo@v1
with: # with:
command: clippy # command: clippy
args: --all # args: --all
ubuntu: ubuntu:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -57,12 +58,21 @@ jobs:
run: cargo doc run: cargo doc
- name: Test Docs - name: Test Docs
run: cargo test --doc run: cargo test --doc
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all
windows: windows:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Windows Build - name: Windows Build
run: cargo build --verbose run: cargo build --verbose
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
# TODO: Figure out how to properly build stuff with clang # TODO: Figure out how to properly build stuff with clang
#- name: Add clang path to $PATH env #- name: Add clang path to $PATH env
# if: runner.os == 'Windows' # if: runner.os == 'Windows'