jenkinsfiles: Use credential for GitHub token #145
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
name: Kcov test | |
on: | |
[push, pull_request] | |
jobs: | |
kcov-test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 3 | |
- name: Update the system | |
run: | | |
sudo apt update -y | |
- name: Install dependencies | |
run: | | |
sudo apt install -y kcov shunit2 bc sqlite3 bsdmainutils libxml-xpath-perl | |
- name: Prepare for tests | |
run: | | |
./run_tests.sh prepare | |
mkdir kcov_out/ | |
git config --global user.email "[email protected]" | |
git config --global user.name "Kworkflow" | |
- name: Prepare for coverage test | |
run: | | |
./run_tests.sh prepare | |
- name: Kcov test | |
run: | | |
kcov --include-path=src,kw \ | |
--exclude-pattern=src/bash_autocomplete.sh,src/help.sh \ | |
kcov_out/ ./run_tests.sh --unit | |
- name: Upload coverage do codecov | |
run: | | |
bash <(curl -s https://codecov.io/bash) -s kcov_out/ |