Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ jobs:
TARGET: ${{ matrix.job.target }}
ARCH: ${{ matrix.job.arch }}
strategy:
# One platform failing must not cancel the others; the release needs the full matrix.
fail-fast: false
matrix:
job:
# The OS is used for the runner
Expand Down Expand Up @@ -182,6 +184,12 @@ jobs:
script: |
core.exportVariable('RUSTFLAGS', '-Csymbol-mangling-version=v0');

# windows-latest no longer exposes the Visual Studio generator to the `cmake` crate, so the
# aws-lc-sys build script panics ("couldn't determine visual studio generator"). vcvars fixes it.
- name: MSVC environment (Windows)
if: ${{ matrix.job.target == 'x86_64-pc-windows-msvc' }}
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0

- name: Build binary
run: |
cargo --version
Expand Down
Loading