Skip to content

Commit 92275a0

Browse files
Merge branch 'main' into action-check
2 parents e872a6e + a3dfac1 commit 92275a0

14 files changed

Lines changed: 913 additions & 149 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ jobs:
5050
- name: build and test all programs separately
5151
shell: bash
5252
run: |
53-
## TODO: add hugetop
5453
set -e
55-
programs="free pgrep pidof pidwait pkill pmap ps pwdx skill slabtop snice sysctl tload top vmstat w watch"
54+
programs="free hugetop pgrep pidof pidwait pkill pmap ps pwdx skill slabtop snice sysctl tload top vmstat w watch"
5655
for program in $programs; do
5756
echo "Building and testing $program"
5857
cargo test -p "uu_$program"
@@ -133,7 +132,7 @@ jobs:
133132
grcov . --binary-path="${COVERAGE_REPORT_DIR}" --output-type lcov --output-path "${COVERAGE_REPORT_FILE}" --branch --ignore build.rs --ignore "vendor/*" --ignore "/*" --ignore "[a-zA-Z]:/*" --excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()" --source-dir .
134133
echo "report=${COVERAGE_REPORT_FILE}" >> $GITHUB_OUTPUT
135134
- name: Upload coverage results (to Codecov.io)
136-
uses: codecov/codecov-action@v5
135+
uses: codecov/codecov-action@v6
137136
with:
138137
token: ${{ secrets.CODECOV_TOKEN }}
139138
files: ${{ steps.coverage.outputs.report }}

0 commit comments

Comments
 (0)