feat: wallet integration call contract #711
ci.yml
on: pull_request
lint
13s
deny
52s
docker
13m 49s
build
8m 16s
clippy
8m 36s
unit-tests
9m 49s
coverage
11m 10s
documentation-tests
11m 36s
Matrix: contract-integration-tests
Matrix: parachain-integration-tests
Annotations
10 errors and 112 warnings
contract-integration-tests (macos-latest)
Process completed with exit code 101.
|
contract-integration-tests (ubuntu-latest)
The job was canceled because "macos-latest" failed.
|
contract-integration-tests (ubuntu-latest)
The operation was canceled.
|
no method named `context` found for enum `std::result::Result` in the current scope:
crates/pop-contracts/src/call.rs#L115
error[E0599]: no method named `context` found for enum `std::result::Result` in the current scope
--> crates/pop-contracts/src/call.rs:115:6
|
112 | let value = call_exec
| _________________________-
113 | | .transcoder()
114 | | .decode_message_return(call_exec.message(), &mut &ret_val.data[..])
115 | | .context(format!("Failed to decode return value {:?}", &ret_val))?;
| |_________________-^^^^^^^
|
::: /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.94/src/lib.rs:618:8
|
618 | fn context<C>(self, context: C) -> Result<T, Error>
| ------- the method is available for `std::result::Result<contract_transcode::Value, anyhow::Error>` here
|
note: the method `context` exists on the type `anyhow::Error`
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.94/src/error.rs:318:5
|
318 | / pub fn context<C>(self, context: C) -> Self
319 | | where
320 | | C: Display + Send + Sync + 'static,
| |___________________________________________^
= help: items from traits can only be used if the trait is in scope
help: use the `?` operator to extract the `anyhow::Error` value, propagating a `Result::Err` value to the caller
|
114 | .decode_message_return(call_exec.message(), &mut &ret_val.data[..])?
| +
help: trait `Context` which provides `context` is implemented but not in scope; perhaps you want to import it
|
3 + use anyhow::Context;
|
help: there is a method `with_context` with a similar name
|
115 | .with_context(format!("Failed to decode return value {:?}", &ret_val))?;
| ~~~~~~~~~~~~
|
build
Process completed with exit code 101.
|
clippy
Clippy had exited with the 101 exit code
|
unit-tests
Process completed with exit code 101.
|
coverage
Process completed with exit code 1.
|
documentation-tests
Process completed with exit code 101.
|
docker
buildx failed with: ERROR: failed to solve: process "/bin/sh -c cargo build --release" did not complete successfully: exit code: 101
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
deny
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
contract-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
contract-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
missing documentation for a method:
crates/pop-parachains/src/templates.rs#L249
warning: missing documentation for a method
--> crates/pop-parachains/src/templates.rs:249:2
|
249 | pub fn license(&self) -> Option<&str> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a method:
crates/pop-parachains/src/templates.rs#L245
warning: missing documentation for a method
--> crates/pop-parachains/src/templates.rs:245:2
|
245 | pub fn is_audited(&self) -> bool {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a method:
crates/pop-parachains/src/templates.rs#L239
warning: missing documentation for a method
--> crates/pop-parachains/src/templates.rs:239:2
|
239 | pub fn is_supported_version(&self, version: &str) -> bool {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a method:
crates/pop-parachains/src/templates.rs#L235
warning: missing documentation for a method
--> crates/pop-parachains/src/templates.rs:235:2
|
235 | pub fn supported_versions(&self) -> Option<Vec<&str>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L196
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:196:2
|
196 | DeprecatedOpenZeppelinGeneric,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L153
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:153:2
|
153 | OpenZeppelinEVM,
| ^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L138
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:138:2
|
138 | OpenZeppelinGeneric,
| ^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-parachains/src/templates.rs#L51
warning: missing documentation for a struct field
--> crates/pop-parachains/src/templates.rs:51:2
|
51 | pub initial_endowment: String,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-parachains/src/templates.rs#L50
warning: missing documentation for a struct field
--> crates/pop-parachains/src/templates.rs:50:2
|
50 | pub decimals: u8,
| ^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-parachains/src/templates.rs#L49
warning: missing documentation for a struct field
--> crates/pop-parachains/src/templates.rs:49:2
|
49 | pub symbol: String,
| ^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L33
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:33:2
|
33 | Parity,
| ^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L26
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:26:2
|
26 | OpenZeppelin,
| ^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/templates.rs#L19
warning: missing documentation for a variant
--> crates/pop-parachains/src/templates.rs:19:2
|
19 | Pop,
| ^^^
|
missing documentation for a variant:
crates/pop-parachains/src/new_pallet/new_pallet_options.rs#L86
warning: missing documentation for a variant
--> crates/pop-parachains/src/new_pallet/new_pallet_options.rs:86:2
|
86 | CustomOrigin,
| ^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/new_pallet/new_pallet_options.rs#L84
warning: missing documentation for a variant
--> crates/pop-parachains/src/new_pallet/new_pallet_options.rs:84:2
|
84 | GenesisConfig,
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/new_pallet/new_pallet_options.rs#L82
warning: missing documentation for a variant
--> crates/pop-parachains/src/new_pallet/new_pallet_options.rs:82:2
|
82 | DefaultConfig,
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L70
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:70:2
|
70 | WorkspaceLocate,
| ^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L68
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:68:2
|
68 | UnsupportedCommand(String),
| ^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L66
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:66:2
|
66 | TomlError(#[from] toml_edit::de::Error),
| ^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L64
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:64:2
|
64 | SourcingError(#[from] pop_common::sourcing::Error),
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L62
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:62:2
|
62 | RustfmtError(std::io::Error),
| ^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L60
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:60:2
|
60 | PathError,
| ^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L52
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:52:2
|
52 | PalletDirCreation,
| ^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L50
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:50:2
|
50 | OrchestratorError(#[from] OrchestratorError),
| ^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-parachains/src/errors.rs#L48
warning: missing documentation for a struct field
--> crates/pop-parachains/src/errors.rs:48:36
|
48 | MissingCommand { command: String, binary: String },
| ^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-parachains/src/errors.rs#L48
warning: missing documentation for a struct field
--> crates/pop-parachains/src/errors.rs:48:19
|
48 | MissingCommand { command: String, binary: String },
| ^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L48
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:48:2
|
48 | MissingCommand { command: String, binary: String },
| ^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L46
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:46:2
|
46 | MissingChainSpec(String),
| ^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L44
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:44:2
|
44 | MissingBinary(String),
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L39
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:39:2
|
39 | JsonError(#[from] serde_json::Error),
| ^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L25
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:25:2
|
25 | Config(String),
| ^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L20
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:20:2
|
20 | CommonError(#[from] pop_common::Error),
| ^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L12
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:12:2
|
12 | AnyhowError(#[from] anyhow::Error),
| ^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-parachains/src/errors.rs#L10
warning: missing documentation for a variant
--> crates/pop-parachains/src/errors.rs:10:2
|
10 | Aborted,
| ^^^^^^^
|
= note: requested on the command line with `-W missing-docs`
|
missing documentation for a macro:
crates/pop-common/src/templates/mod.rs#L114
warning: missing documentation for a macro
--> crates/pop-common/src/templates/mod.rs:114:1
|
114 | macro_rules! enum_variants_without_deprecated {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a macro:
crates/pop-common/src/templates/mod.rs#L101
warning: missing documentation for a macro
--> crates/pop-common/src/templates/mod.rs:101:1
|
101 | macro_rules! enum_variants {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for an associated constant:
crates/pop-common/src/templates/mod.rs#L22
warning: missing documentation for an associated constant
--> crates/pop-common/src/templates/mod.rs:22:2
|
22 | const PROPERTY: &'static str = "Type";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/templates/mod.rs#L14
warning: missing documentation for a variant
--> crates/pop-common/src/templates/mod.rs:14:2
|
14 | TypeMissing,
| ^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/templates/mod.rs#L11
warning: missing documentation for a variant
--> crates/pop-common/src/templates/mod.rs:11:2
|
11 | RepositoryMissing,
| ^^^^^^^^^^^^^^^^^
|
missing documentation for an enum:
crates/pop-common/src/templates/mod.rs#L9
warning: missing documentation for an enum
--> crates/pop-common/src/templates/mod.rs:9:1
|
9 | pub enum Error {
| ^^^^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/templates/mod.rs#L6
warning: missing documentation for a module
--> crates/pop-common/src/templates/mod.rs:6:1
|
6 | pub mod extractor;
| ^^^^^^^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/sourcing/mod.rs#L840
warning: missing documentation for a module
--> crates/pop-common/src/sourcing/mod.rs:840:1
|
840 | pub mod traits {
| ^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L35
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:35:2
|
35 | ParseError(#[from] url::ParseError),
| ^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L33
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:33:2
|
33 | MissingBinary(String),
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L31
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:31:2
|
31 | IO(#[from] std::io::Error),
| ^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L29
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:29:2
|
29 | HttpError(#[from] reqwest::Error),
| ^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L27
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:27:2
|
27 | ArchiveError(String),
| ^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/sourcing/mod.rs#L25
warning: missing documentation for a variant
--> crates/pop-common/src/sourcing/mod.rs:25:2
|
25 | AnyhowError(#[from] anyhow::Error),
| ^^^^^^^^^^^
|
missing documentation for an enum:
crates/pop-common/src/sourcing/mod.rs#L23
warning: missing documentation for an enum
--> crates/pop-common/src/sourcing/mod.rs:23:1
|
23 | pub enum Error {
| ^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L267
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:267:2
|
267 | pub commit: Option<String>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L266
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:266:2
|
266 | pub prerelease: bool,
| ^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L265
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:265:2
|
265 | pub name: String,
| ^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L264
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:264:2
|
264 | pub tag_name: String,
| ^^^^^^^^^^^^^^^^^^^^
|
missing documentation for an associated function:
crates/pop-common/src/git.rs#L241
warning: missing documentation for an associated function
--> crates/pop-common/src/git.rs:241:2
|
241 | pub fn name(repo: &Url) -> Result<&str> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a method:
crates/pop-common/src/git.rs#L205
warning: missing documentation for a method
--> crates/pop-common/src/git.rs:205:2
|
205 | pub async fn get_repo_license(&self) -> Result<String> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L151
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:151:2
|
151 | pub name: String,
| ^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/git.rs#L150
warning: missing documentation for a struct field
--> crates/pop-common/src/git.rs:150:2
|
150 | pub org: String,
| ^^^^^^^^^^^^^^^
|
missing documentation for an associated function:
crates/pop-common/src/git.rs#L16
warning: missing documentation for an associated function
--> crates/pop-common/src/git.rs:16:2
|
16 | pub fn clone(url: &Url, working_dir: &Path, reference: Option<&str>) -> Result<()> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/errors.rs#L37
warning: missing documentation for a struct field
--> crates/pop-common/src/errors.rs:37:44
|
37 | UnsupportedPlatform { arch: &'static str, os: &'static str },
| ^^^^^^^^^^^^^^^^
|
missing documentation for a struct field:
crates/pop-common/src/errors.rs#L37
warning: missing documentation for a struct field
--> crates/pop-common/src/errors.rs:37:24
|
37 | UnsupportedPlatform { arch: &'static str, os: &'static str },
| ^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L37
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:37:2
|
37 | UnsupportedPlatform { arch: &'static str, os: &'static str },
| ^^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L35
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:35:2
|
35 | UnsupportedCommand(String),
| ^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L33
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:33:2
|
33 | TemplateError(#[from] templates::Error),
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L31
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:31:2
|
31 | SourceError(#[from] sourcing::Error),
| ^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L26
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:26:2
|
26 | ParseError(#[from] url::ParseError),
| ^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L21
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:21:2
|
21 | ManifestError(#[from] cargo_toml::Error),
| ^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L16
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:16:2
|
16 | IO(#[from] std::io::Error),
| ^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L14
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:14:2
|
14 | Git(String),
| ^^^
|
missing documentation for a variant:
crates/pop-common/src/errors.rs#L12
warning: missing documentation for a variant
--> crates/pop-common/src/errors.rs:12:2
|
12 | Config(String),
| ^^^^^^
|
missing documentation for a module:
crates/pop-common/src/lib.rs#L21
warning: missing documentation for a module
--> crates/pop-common/src/lib.rs:21:1
|
21 | pub mod manifest;
| ^^^^^^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/lib.rs#L20
warning: missing documentation for a module
--> crates/pop-common/src/lib.rs:20:1
|
20 | pub mod helpers;
| ^^^^^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/lib.rs#L19
warning: missing documentation for a module
--> crates/pop-common/src/lib.rs:19:1
|
19 | pub mod git;
| ^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/lib.rs#L18
warning: missing documentation for a module
--> crates/pop-common/src/lib.rs:18:1
|
18 | pub mod errors;
| ^^^^^^^^^^^^^^
|
missing documentation for a module:
crates/pop-common/src/lib.rs#L17
warning: missing documentation for a module
--> crates/pop-common/src/lib.rs:17:1
|
17 | pub mod build;
| ^^^^^^^^^^^^^
|
missing documentation for the crate:
crates/pop-common/src/lib.rs#L3
warning: missing documentation for the crate
--> crates/pop-common/src/lib.rs:3:1
|
3 | / use std::net::TcpListener;
4 | |
5 | | pub use build::Profile;
6 | | pub use errors::Error;
... |
104 | | }
105 | | }
| |_^
|
= note: requested on the command line with `-W missing-docs`
|
missing documentation for a struct:
crates/pop-telemetry/src/lib.rs#L36
warning: missing documentation for a struct
--> crates/pop-telemetry/src/lib.rs:36:1
|
36 | pub struct Telemetry {
| ^^^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-telemetry/src/lib.rs#L30
warning: missing documentation for a variant
--> crates/pop-telemetry/src/lib.rs:30:2
|
30 | SerializeFailed(String),
| ^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-telemetry/src/lib.rs#L28
warning: missing documentation for a variant
--> crates/pop-telemetry/src/lib.rs:28:2
|
28 | ConfigFileNotFound,
| ^^^^^^^^^^^^^^^^^^
|
missing documentation for a variant:
crates/pop-telemetry/src/lib.rs#L26
warning: missing documentation for a variant
--> crates/pop-telemetry/src/lib.rs:26:2
|
26 | OptedOut,
| ^^^^^^^^
|
missing documentation for a variant:
crates/pop-telemetry/src/lib.rs#L24
warning: missing documentation for a variant
--> crates/pop-telemetry/src/lib.rs:24:2
|
24 | IO(io::Error),
| ^^
|
missing documentation for a variant:
crates/pop-telemetry/src/lib.rs#L22
warning: missing documentation for a variant
--> crates/pop-telemetry/src/lib.rs:22:2
|
22 | NetworkError(reqwest::Error),
| ^^^^^^^^^^^^
|
missing documentation for an enum:
crates/pop-telemetry/src/lib.rs#L20
warning: missing documentation for an enum
--> crates/pop-telemetry/src/lib.rs:20:1
|
20 | pub enum TelemetryError {
| ^^^^^^^^^^^^^^^^^^^^^^^
|
missing documentation for the crate:
crates/pop-telemetry/src/lib.rs#L3
warning: missing documentation for the crate
--> crates/pop-telemetry/src/lib.rs:3:1
|
3 | / use reqwest::Client;
4 | | use serde::{de::DeserializeOwned, Deserialize, Serialize};
5 | | use serde_json::{json, Value};
6 | | use std::{
... |
371 | | }
372 | | }
| |_^
|
= note: requested on the command line with `-W missing-docs`
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
unit-tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
coverage
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
documentation-tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
docker
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
parachain-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
parachain-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
parachain-integration-tests (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|