error: use of deprecated struct `test_deprecated::DeprecatedStruct`
--> tests/test_lints.rs:73:13
|
73 | DeprecatedStruct,
| ^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> tests/test_lints.rs:39:13
|
39 | #![deny(deprecated)]
| ^^^^^^^^^^
DisplayDebug currently works but DebugDisplay does not.
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
--> tests/test_path.rs:36:13
|
32 | #[derive(Error, Debug)]
| ----- in this derive macro expansion
...
36 | #[error("debug:{0:?} display:{0}")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
|
= help: the trait `std::fmt::Display` is not implemented for `PathBuf`
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
= note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
= help: the trait `std::fmt::Display` is implemented for `Var<'_, T>`
= note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
This step has been failing way more than reasonable across my various repos.
With the provided path, there will be 1 file uploaded
Artifact name is valid!
Root directory input is valid!
Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
error[E0277]: the trait bound `T: UpperHex` is not satisfied
--> tests/test_generics.rs:179:13
|
178 | #[derive(Error, Debug)]
| ----- in this derive macro expansion
179 | #[error("0x{thing:x} 0x{thing:X}")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `UpperHex` is not implemented for `T`
|
= note: required for `&T` to implement `UpperHex`
note: required by a bound in `core::fmt::rt::Argument::<'_>::new_upper_hex`
--> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/fmt/rt.rs:133:29
|
133 | pub fn new_upper_hex<T: UpperHex>(x: &T) -> Argument<'_> {
| ^^^^^^^^ required by this bound in `Argument::<'_>::new_upper_hex`
= note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)