Skip to content

Commit

Permalink
ci(tests): fix pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-babichenko committed Nov 24, 2024
1 parent 55c17c5 commit 1adb7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
PATH="$(rustc --print=target-libdir)/../bin:$PATH"
BINARIES="$(cargo test --no-run --message-format=json | jq -rj 'select(.profile.test == true) | .filenames[] | "--object " + . + " "')"
ARGS="-instr-profile fixit.profdata $BINARIES --object $PWD/target/debug/fixit"
ARGS="-instr-profile fixit.profdata $BINARIES --object $(pwd)/target/debug/fixit"
llvm-profdata merge -sparse default_*.profraw -o fixit.profdata
llvm-cov report --use-color --ignore-filename-regex='/.cargo/registry' $ARGS
llvm-cov export -format=lcov $ARGS -sources src/{,**/}*.rs > fixit.lcov
Expand Down

0 comments on commit 1adb7dc

Please sign in to comment.