forked from actix/actix-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,34 +116,6 @@ jobs: | |
uses: actions-rs/cargo@v1 | ||
with: { command: ci-check-all-feature-powerset-linux } | ||
|
||
# job currently (1st Feb 2022) segfaults | ||
coverage: | ||
name: coverage | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install stable | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable-x86_64-unknown-linux-gnu | ||
profile: minimal | ||
override: true | ||
|
||
- name: Generate Cargo.lock | ||
uses: actions-rs/cargo@v1 | ||
with: { command: generate-lockfile } | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Generate coverage file | ||
run: | | ||
cargo install cargo-tarpaulin --vers "^0.13" | ||
cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose | ||
- name: Upload to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: { file: cobertura.xml } | ||
|
||
nextest: | ||
name: nextest | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# disabled because `cargo tarpaulin` currently segfaults | ||
|
||
name: Coverage | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
# job currently (1st Feb 2022) segfaults | ||
coverage: | ||
name: coverage | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install stable | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable-x86_64-unknown-linux-gnu | ||
profile: minimal | ||
override: true | ||
|
||
- name: Generate Cargo.lock | ||
uses: actions-rs/cargo@v1 | ||
with: { command: generate-lockfile } | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Generate coverage file | ||
run: | | ||
cargo install cargo-tarpaulin --vers "^0.13" | ||
cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose | ||
- name: Upload to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: { file: cobertura.xml } |