Skip to content

Commit

Permalink
do not run xtask lint on OSX and Windows
Browse files Browse the repository at this point in the history
this is far too slow on other platforms than linux
  • Loading branch information
Geal committed Nov 16, 2021
1 parent a973ece commit 5c5b527
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,15 @@ jobs:
- run:
command: >
cargo xtask test --with-demo
- run:
command: >
cargo xtask lint
# xtask lint is far too slow on OSX and windows, and executes in the same way
# on all platforms anyway
- when:
condition:
equal: [ *rust_linux_executor, << parameters.platform >> ]
steps:
- run:
command: >
cargo xtask lint
build_release:
parameters:
Expand Down

0 comments on commit 5c5b527

Please sign in to comment.