veloren/.gitlab/CI
Marcel Märtens 68be467138 After some discussion with XVar, Song and Yakei we found out that cargo clippy is a superset of cargo check.
There are multiple hints:
 - one guy in discord  https://discord.gg/nWGhnbRb  https://discord.com/channels/273534239310479360/335502067432947748/798886188923617290
 - a old stackoverflow https://stackoverflow.com/questions/57449356/is-cargo-clippy-a-superset-of-cargo-check which lead us to the source code:
   7fa1d78c89/src/main.rs (L73)
   which either uses `check` or `fix`.
   cargo fix is documented in the docs with (https://doc.rust-lang.org/cargo/commands/cargo-fix.html)
   "executing cargo fix will under the hood execute cargo-check(1)."
 - `cargo clippy` fails after running `cargo check` prob as there is nothing to do.
 - `cargo clippy --help` points us to `cargo check --help`
Thus we are removing `cargo check` from the CI as a seperate check.

However `cargo check --examples` did check the examples.
In order to have them covered we are also running clippy now for examples, benches and all bins.
Also we moved `--locked` from cargo check to clippy.
2021-01-13 14:22:54 +01:00
..
build.gitlab-ci.yml it seems like that the TAGUUID must start with a Alphabetic char 2020-12-12 00:20:57 +01:00
check.gitlab-ci.yml After some discussion with XVar, Song and Yakei we found out that cargo clippy is a superset of cargo check. 2021-01-13 14:22:54 +01:00
publish.gitlab-ci.yml ci cleanup, dependency update 2020-11-06 14:34:42 +01:00
recompile.yml Don't drop wayland clipboard 2020-12-01 19:35:32 -05:00
release.yml put optional builds in check like imbris suggested in order to test macOS and other builds easily 2020-07-17 12:17:34 +02:00