Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #879

Merged
merged 5 commits into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/llvm-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "**For full LLVM coverage report [click here](https://staticsitellvmhtml.z13.web.core.windows.net/$PR_NUMBER/html/)!**" > uncovered-lines.log

cargo llvm-cov \
--workspace --html --show-missing-lines --doctests --hide-instantiations \
--workspace --html --show-missing-lines --hide-instantiations \
--ignore-filename-regex "(tests.rs|mock.rs)"

UNCOVERED_LINES=$(cat uncovered-lines.log | sed "s|$(pwd)|.|")
Expand Down
2 changes: 1 addition & 1 deletion creditcoin-js/creditcoin.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,6 @@ std = [
'sp-transaction-pool/std',
'sp-version/std',
'task-scheduler-runtime-api/std',
'primitives/std',
]
try-runtime = []
2 changes: 1 addition & 1 deletion runtime/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 213,
impl_version: 3,
impl_version: 4,
apis: RUNTIME_API_VERSIONS,
transaction_version: 10,
state_version: 1,
Expand Down