Skip to content

Commit

Permalink
Test Windows build with extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewillmon committed Sep 10, 2024
1 parent 907fa31 commit 14ff461
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
extension: .exe
flags: --no-default-features
flags: --no-default-features -F extensions
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
Expand All @@ -72,6 +72,11 @@ jobs:
name: Install protoc
run: sudo apt update && sudo apt install -y protobuf-compiler

- if: ${{ runner.os == 'Windows' }}
name: Install protoc
# TODO: Replace this with something that isn't a 3rd-party action
uses: arduino/setup-protoc@v3

- if: ${{ runner.os == 'Windows' }}
name: Install Rust toolchain
run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}
Expand Down

0 comments on commit 14ff461

Please sign in to comment.