Clean up the buffer after every resize. #11
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: Test AddressSanitizer | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
SCCACHE_GHA_ENABLED: on | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup sccache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
- name: Install Ubuntu Dependencies | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: llvm | |
version: 1.0 | |
if: matrix.os == 'ubuntu-latest' | |
- name: Install MacOS Dependencies | |
run: | | |
brew update | |
brew install llvm || echo "This step will fail because of python@3.11 so we force link and ignore the error" | |
brew link --overwrite python@3.11 | |
if: matrix.os == 'macos-latest' | |
- name: Install Nightly Rust and Sources | |
run: rustup toolchain install nightly --component rust-src | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Run tests address | |
run: cargo +nightly xtask address-sanitizer | |
env: | |
RUST_BACKTRACE: full | |
RUSTC_WRAPPER: sccache | |
- name: Run tests thread | |
run: cargo +nightly xtask thread-sanitizer | |
env: | |
RUST_BACKTRACE: full | |
RUSTC_WRAPPER: sccache |