refactor: expose range
, data
and xor_key
in Match
as methods…
#1135
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: Tests | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize, ready_for_review ] | |
push: | |
jobs: | |
test: | |
name: Test | |
env: | |
CARGO_TERM_COLOR: always | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: | |
- msrv | |
- stable | |
- nightly | |
- macos | |
- win-msvc | |
# - win-gnu | |
- no-default-features | |
include: | |
- build: msrv | |
os: ubuntu-latest | |
rust: 1.71.0 | |
args: "" | |
- build: stable | |
os: ubuntu-latest | |
rust: stable | |
args: "" | |
- build: nightly | |
os: ubuntu-latest | |
rust: nightly | |
args: "" | |
- build: macos | |
os: macos-latest | |
rust: stable | |
args: "" | |
- build: win-msvc | |
os: windows-latest | |
rust: stable | |
args: "" | |
# Tests for the `stable-x86_64-pc-windows-gnu` toolchain disabled | |
# due to https://github.com/VirusTotal/yara-x/issues/29 | |
# | |
# - build: win-gnu | |
# os: windows-latest | |
# rust: stable-x86_64-gnu | |
# args: "" | |
- build: no-default-features | |
os: ubuntu-latest | |
rust: stable | |
args: "--package yara-x --no-default-features --features=test_proto2-module,test_proto3-module,time-module,hash-module,macho-module,math-module,lnk-module,elf-module,pe-module,dotnet-module,console-module" | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install OpenSSL | |
id: vcpkg | |
if: runner.os == 'Windows' | |
uses: johnwason/vcpkg-action@v5 | |
with: | |
pkgs: openssl | |
triplet: x64-windows-release | |
token: ${{ github.token }} | |
- name: Set OPENSSL_DIR environment variable | |
if: runner.os == 'Windows' | |
shell: bash | |
run: echo "OPENSSL_DIR=${{ github.workspace }}\\vcpkg\\installed\\x64-windows-release" >> $GITHUB_ENV | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Run cargo test | |
run: cargo test --all-targets ${{ matrix.args }} | |
env: | |
RUSTFLAGS: -Awarnings # Allow all warnings | |