mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-08 10:07:51 -06:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aaf30efde7 | ||
|
|
89f1e71568 |
6
.github/workflows/coverage.yaml
vendored
6
.github/workflows/coverage.yaml
vendored
@@ -9,6 +9,8 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
coverage:
|
coverage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
@@ -49,13 +51,13 @@ jobs:
|
|||||||
just coverage
|
just coverage
|
||||||
|
|
||||||
- name: Download Coveralls CLI
|
- name: Download Coveralls CLI
|
||||||
|
if: ${{ env.COVERALLS_REPO_TOKEN != '' }}
|
||||||
run: |
|
run: |
|
||||||
# use GitHub Releases URL instead of coveralls.io because they can't maintain their own files; it 404s
|
# use GitHub Releases URL instead of coveralls.io because they can't maintain their own files; it 404s
|
||||||
curl -L https://github.com/coverallsapp/coverage-reporter/releases/download/v0.6.15/coveralls-linux-x86_64.tar.gz | tar -xz -C /usr/local/bin
|
curl -L https://github.com/coverallsapp/coverage-reporter/releases/download/v0.6.15/coveralls-linux-x86_64.tar.gz | tar -xz -C /usr/local/bin
|
||||||
|
|
||||||
- name: Upload coverage to Coveralls
|
- name: Upload coverage to Coveralls
|
||||||
env:
|
if: ${{ env.COVERALLS_REPO_TOKEN != '' }}
|
||||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
||||||
run: |
|
run: |
|
||||||
if [ ! -f "lcov.info" ]; then
|
if [ ! -f "lcov.info" ]; then
|
||||||
echo "Error: lcov.info file not found. Coverage generation may have failed."
|
echo "Error: lcov.info file not found. Coverage generation may have failed."
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -18,3 +18,4 @@ coverage.html
|
|||||||
|
|
||||||
# Profiling output
|
# Profiling output
|
||||||
flamegraph.svg
|
flamegraph.svg
|
||||||
|
/profile.*
|
||||||
|
|||||||
7
Justfile
7
Justfile
@@ -5,6 +5,8 @@ set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
|
|||||||
# You can use src\\\\..., but the filename alone is acceptable too
|
# You can use src\\\\..., but the filename alone is acceptable too
|
||||||
coverage_exclude_pattern := "src\\\\app.rs|audio.rs|src\\\\error.rs|platform\\\\emscripten.rs"
|
coverage_exclude_pattern := "src\\\\app.rs|audio.rs|src\\\\error.rs|platform\\\\emscripten.rs"
|
||||||
|
|
||||||
|
binary_extension := if os() == "windows" { ".exe" } else { "" }
|
||||||
|
|
||||||
# !!! --ignore-filename-regex should be used on both reports & coverage testing
|
# !!! --ignore-filename-regex should be used on both reports & coverage testing
|
||||||
# !!! --remap-path-prefix prevents the absolute path from being used in the generated report
|
# !!! --remap-path-prefix prevents the absolute path from being used in the generated report
|
||||||
|
|
||||||
@@ -31,3 +33,8 @@ coverage:
|
|||||||
--output-path lcov.info \
|
--output-path lcov.info \
|
||||||
--profile coverage \
|
--profile coverage \
|
||||||
--no-fail-fast nextest
|
--no-fail-fast nextest
|
||||||
|
|
||||||
|
# Profile the project using 'samply'
|
||||||
|
samply:
|
||||||
|
cargo build --profile profile
|
||||||
|
samply record ./target/profile/pacman{{ binary_extension }}
|
||||||
|
|||||||
Reference in New Issue
Block a user