Skip to content

Commit

Permalink
fix: Misleading comments in workload definitions about Cargo features
Browse files Browse the repository at this point in the history
  • Loading branch information
vadorovsky authored and banditopazzo committed May 2, 2024
1 parent c42f7d9 commit 32483bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- target: x86_64-unknown-linux-gnu
args: "--features full"

# For `musl` builds, use the `static` feature.
# For `musl` builds, use the `all-vendored` and `tls-rustls` features.
- target: x86_64-unknown-linux-musl
args: "--no-default-features --features full --features all-vendored --features tls-rustls"

- target: aarch64-unknown-linux-gnu
args: "--features full"

# For `musl` builds, use the `static` feature.
# For `musl` builds, use the `all-vendored` and `tls-rustls` features.
- target: aarch64-unknown-linux-musl
args: "--no-default-features --features full --features all-vendored --features tls-rustls"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
- target: x86_64-unknown-linux-gnu
args: "--features full"

# For `musl` builds, use the `static` feature.
# For `musl` builds, use the `all-vendored` and `tls-rustls` features.
- target: x86_64-unknown-linux-musl
args: "--no-default-features --features full --features all-vendored --features tls-rustls"

- target: aarch64-unknown-linux-gnu
args: "--features full"

# For `musl` builds, use the `static` feature.
# For `musl` builds, use the `all-vendored` and `tls-rustls` features.
- target: aarch64-unknown-linux-musl
args: "--no-default-features --features full --features all-vendored --features tls-rustls"

Expand Down

0 comments on commit 32483bc

Please sign in to comment.