Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/actions/windows-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ runs:
architecture: ${{ inputs.arch }}
cache: pip
cache-dependency-path: ci-constraints-requirements.txt
# llvm-tools is only used to process Rust coverage data, which the
# tests-nocoverage session doesn't collect.
- run: rustup component add llvm-tools-preview
shell: bash
if: ${{ inputs.noxsession != 'tests-nocoverage' }}
- name: Cache rust and pip
uses: ./.github/actions/cache
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ jobs:
components: rustfmt,clippy
if: matrix.PYTHON.RUST

# llvm-tools is only used to process Rust coverage data, which the
# tests-nocoverage session doesn't collect.
- run: rustup component add llvm-tools-preview
if: matrix.PYTHON.NOXSESSION != 'flake' && matrix.PYTHON.NOXSESSION != 'docs'
if: matrix.PYTHON.NOXSESSION != 'flake' && matrix.PYTHON.NOXSESSION != 'docs' && matrix.PYTHON.NOXSESSION != 'tests-nocoverage'
- name: Clone test vectors
timeout-minutes: 2
uses: ./.github/actions/fetch-vectors
Expand Down
Loading