Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ jobs:
sudo apt-get update
sudo apt-get -y install libclang-18-dev libpam0g-dev python3-langtable
# the langtable data location is different in SUSE/openSUSE, create a symlink
sudo mkdir -p /usr/share/langtable/data
sudo ln -s /usr/lib/python3/dist-packages/langtable/data/timezoneidparts.xml.gz /usr/share/langtable/data/timezoneidparts.xml.gz
sudo mkdir -p /usr/share/langtable
sudo ln -s /usr/lib/python3/dist-packages/langtable/data /usr/share/langtable/data

- name: Installed packages
run: apt list --installed
Expand All @@ -157,7 +157,7 @@ jobs:
# flags, to avoid reusing the previous builds it always starts from scratch.
# The --skip-clean skips the cleanup and allows using the cached results.
# See https://github.com/xd009642/tarpaulin/discussions/772
run: cargo tarpaulin --all --doc --out xml --target-dir target-coverage --skip-clean -- --nocapture
run: cargo tarpaulin --workspace --all-targets --doc --out xml --target-dir target-coverage --skip-clean -- --nocapture
env:
# use the "stable" tool chain (installed by default) instead of the "nightly" default in tarpaulin
RUSTC_BOOTSTRAP: 1
Expand Down
Loading