Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Commit

Permalink
Fix CI failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
surangap committed Jul 19, 2022
1 parent ab767f1 commit e672912
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
with:
profile: minimal
toolchain: stable
toolchain: nightly
target: wasm32-unknown-unknown
default: true
override: true
components: rustfmt

Expand All @@ -55,7 +57,9 @@ jobs:
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
with:
profile: minimal
toolchain: stable
toolchain: nightly
target: wasm32-unknown-unknown
default: true
override: true
components: clippy

Expand All @@ -71,7 +75,10 @@ jobs:

- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
with:
profile: minimal
toolchain: nightly
target: wasm32-unknown-unknown
default: true
override: true

- uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b
Expand All @@ -80,8 +87,8 @@ jobs:
args: --all-features --no-fail-fast
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTFLAGS: '-Zprofile -Zno-profiler-runtime -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Zno-profiler-runtime -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'

- id: coverage
uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248
Expand Down

0 comments on commit e672912

Please sign in to comment.