Skip to content

Rewrite ssailification to do stack variable identification more intel… #32

Rewrite ssailification to do stack variable identification more intel…

Rewrite ssailification to do stack variable identification more intel… #32

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
ci:
uses: angr/ci-settings/.github/workflows/angr-ci.yml@master
smoketest:
name: Test installation
strategy:
matrix:
os: [windows-2022, macos-15-intel]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1
if: startsWith(runner.os, 'windows')
- uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v6
- name: Sync dependencies
run: uv sync -p 3.10
- name: Collect tests
run: uv run pytest --collect-only tests
rust_check:
name: Rust Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1
with:
components: clippy, rustfmt
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo fmt --all -- --check
rust_test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
with:
python-version: "3.10"
- run: cargo test --release