Release v2.12.1 #337
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: coverage | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
ubuntu-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependences | |
run: | | |
sudo apt update && sudo apt install -y gdb pip curl python3.10-dev llvm \ | |
openjdk-17-jdk ca-certificates gnupg | |
pip3 install atheris | |
sudo mkdir -p /etc/apt/keyrings | |
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg | |
export NODE_MAJOR=20 | |
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list | |
sudo apt update && sudo apt install -y nodejs | |
sudo npm install -g jsfuzz | |
sudo npm install --save-dev @jazzer.js/core | |
wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | |
dpkg -i packages-microsoft-prod.deb && rm packages-microsoft-prod.deb | |
sudo apt update && sudo apt install -y --no-install-recommends dotnet-sdk-8.0 | |
curl https://sh.rustup.rs -o rustup.sh && chmod +x rustup.sh && \ | |
./rustup.sh -y && rm rustup.sh | |
rustup install nightly | |
export PATH=/root/.cargo/bin:$PATH | |
cargo install cargo-fuzz grcov | |
- name: Build and Run Tests | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: '-Cinstrument-coverage -Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort' | |
RUSTDOCFLAGS: '-Cpanic=abort' | |
LLVM_PROFILE_FILE: 'casr-%p-%m.profraw' | |
run: | | |
rustup component add llvm-tools-preview | |
cargo +nightly build --all-features --verbose | |
cargo +nightly test --verbose --lib -- --test-threads 1 | |
cargo +nightly test --verbose --package casr | |
- name: Collect Coverage | |
run: | | |
mkdir target/coverage | |
grcov \ | |
. \ | |
--binary-path target/debug \ | |
-s . \ | |
-o lcov.info \ | |
--ignore-not-existing \ | |
--keep-only '*casr/src*' \ | |
--excl-line '///' \ | |
--excl-start '^(#\[cfg\(test\)\]|#\[test\])' \ | |
--excl-stop '^}$' \ | |
-t lcov | |
- name: Upload Coverage Reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |