Make native-only loaders optional on Emscripten #1168
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| uses: angr/ci-settings/.github/workflows/angr-ci.yml@master | |
| test: | |
| name: Test ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-2022, macos-15] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| path: cle | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: angr/binaries | |
| path: binaries | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1 | |
| if: runner.os == 'Windows' | |
| - name: Sync dependencies with uv | |
| run: uv sync --directory cle --python python3.12 --group testing | |
| - name: Run tests | |
| run: uv --directory cle run pytest -n auto |