hurl/.github/workflows/coverage.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2022-08-11 23:51:17 +03:00
name: coverage
on:
2022-09-28 14:16:46 +03:00
schedule:
- cron: "0 8 * * *"
2022-08-11 23:51:17 +03:00
workflow_dispatch:
env:
RUSTFLAGS: "-C instrument-coverage"
jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Environment
run: bin/environment.sh
- name: Install Prerequisites
run: bin/install_prerequisites_ubuntu.sh
- name: Install Rust
run: bin/install_rust_latest.sh
- name: Install Grcov
run: bin/install_grcov.sh
- name: Build
run: cargo build
- name: Test Prerequisites
run: bin/test/test_prerequisites.sh
- name: Run Integration Tests
2022-09-30 11:53:41 +03:00
run: |
export LLVM_PROFILE_FILE="hurl-test-integration-%p-%m.profraw"
export PATH="$PWD/target/debug:$PATH"
bin/test/test_integ.sh
2022-08-11 23:51:17 +03:00
- name: Build Report
run: |
grcov . --binary-path target/debug -s . -t html --branch --ignore-not-existing -o ./coverage/
- name: Deploy Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: github-pages
publish_dir: coverage
destination_dir: coverage
- name: Archive Artifacts
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: coverage
path: |
coverage
*.profraw