Skip to content

Commit

Permalink
rework check all targets
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Sep 2, 2024
1 parent a190458 commit 27cdf71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,17 +137,7 @@ jobs:
- name: Check all targets
run: |
ROOT=$(pwd) ./.travis/ci-system-setup.sh
cargo check --all-targets
check-all:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Check all
env:
AWS_EC2_METADATA_DISABLED: true
run: cargo check --all-targets --workspace
cargo check --all-targets --workspace
cli-tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion api/rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ impl ModelInterface for Model {
E: Into<anyhow::Error> + Debug,
{
let mut annotations = Annotations::from_model(&self.0)?;
tract_libcli::profile::extract_costs(&mut annotations, &self.0)?;
tract_libcli::profile::extract_costs(&mut annotations, &self.0, &SymbolValues::default())?;
if let Some(inputs) = inputs {
let inputs = inputs
.into_iter()
Expand Down

0 comments on commit 27cdf71

Please sign in to comment.