Skip to content

Commit

Permalink
exclude sys for now
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed Dec 14, 2024
1 parent 1d5b920 commit 28d36b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
# Note; we don't run the powerset here because it's very slow on CI
# Perhaps we should consider it at some point.
- name: Run tests
run: cargo +nightly llvm-cov nextest --branch --no-fail-fast --all-features --lcov --output-path ./lcov.info --profile ci
run: cargo +nightly llvm-cov nextest --branch --no-fail-fast --lcov --output-path ./lcov.info --profile ci

- uses: codecov/codecov-action@v5
with:
Expand Down
3 changes: 3 additions & 0 deletions crates/ffmpeg-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,6 @@ avresample = []
postproc = []
swresample = []
swscale = []

[package.metadata.xtask]
skip = true
1 change: 1 addition & 0 deletions dev-tools/xtask/src/cmd/power_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ impl PowerSet {
for (package, xtask_metadata) in metadata.workspace_packages().iter().zip(xtask_metadata.iter()) {
if ignored_packages.contains(&package.name.to_lowercase())
|| !(packages.is_empty() || packages.contains(&package.name.to_lowercase()))
|| xtask_metadata.skip
{
continue;
}
Expand Down
2 changes: 2 additions & 0 deletions dev-tools/xtask/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub struct XTaskMetadata {
pub allow_list: BTreeSet<String>,
#[serde(alias = "addative-features")]
pub addative_features: BTreeSet<String>,
pub skip: bool,
}

impl Default for XTaskMetadata {
Expand All @@ -38,6 +39,7 @@ impl Default for XTaskMetadata {
max_combination_size: None,
allow_list: Default::default(),
addative_features: Default::default(),
skip: false,
}
}
}
Expand Down

0 comments on commit 28d36b6

Please sign in to comment.