mirror of
https://github.com/actix/actix-web.git
synced 2024-11-29 04:51:13 +00:00
disable coverage job
This commit is contained in:
parent
c84c1f0f15
commit
ccf430d74a
1 changed files with 25 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: CI (master only)
|
name: CI (post-merge)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -125,29 +125,30 @@ jobs:
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with: { command: ci-check-all-feature-powerset-linux }
|
with: { command: ci-check-all-feature-powerset-linux }
|
||||||
|
|
||||||
coverage:
|
# job currently (1st Feb 2022) segfaults
|
||||||
name: coverage
|
# coverage:
|
||||||
runs-on: ubuntu-latest
|
# name: coverage
|
||||||
steps:
|
# runs-on: ubuntu-latest
|
||||||
- uses: actions/checkout@v2
|
# steps:
|
||||||
|
# - uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install stable
|
# - name: Install stable
|
||||||
uses: actions-rs/toolchain@v1
|
# uses: actions-rs/toolchain@v1
|
||||||
with:
|
# with:
|
||||||
toolchain: stable-x86_64-unknown-linux-gnu
|
# toolchain: stable-x86_64-unknown-linux-gnu
|
||||||
profile: minimal
|
# profile: minimal
|
||||||
override: true
|
# override: true
|
||||||
|
|
||||||
- name: Generate Cargo.lock
|
# - name: Generate Cargo.lock
|
||||||
uses: actions-rs/cargo@v1
|
# uses: actions-rs/cargo@v1
|
||||||
with: { command: generate-lockfile }
|
# with: { command: generate-lockfile }
|
||||||
- name: Cache Dependencies
|
# - name: Cache Dependencies
|
||||||
uses: Swatinem/rust-cache@v1.2.0
|
# uses: Swatinem/rust-cache@v1.2.0
|
||||||
|
|
||||||
- name: Generate coverage file
|
# - name: Generate coverage file
|
||||||
run: |
|
# run: |
|
||||||
cargo install cargo-tarpaulin --vers "^0.13"
|
# cargo install cargo-tarpaulin --vers "^0.13"
|
||||||
cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose
|
# cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose
|
||||||
- name: Upload to Codecov
|
# - name: Upload to Codecov
|
||||||
uses: codecov/codecov-action@v1
|
# uses: codecov/codecov-action@v1
|
||||||
with: { file: cobertura.xml }
|
# with: { file: cobertura.xml }
|
Loading…
Reference in a new issue