Skip to content

bump zip version from yank #34

bump zip version from yank

bump zip version from yank #34

name: Windows Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2.6.2
- name: Decrypt meshes
shell: bash
env:
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
run: |
for FILE in collision_meshes/**/*.gpg; do
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output "${FILE%.gpg}" "$FILE"
done
- name: Setup LLVM and cargo build
shell: cmd
run: |
set PATH=%PATH:C:\Program Files\LLVM\bin;=%
cargo build --verbose
- name: Run tests
shell: cmd
run: |
set PATH=%PATH:C:\Program Files\LLVM\bin;=%
cargo test --verbose