monheim bef2cb8a12
All checks were successful
Windows Build / build (push) Successful in 2s
Update .gitea/workflows/docker-test.yml
2025-04-20 23:02:50 +02:00

21 lines
674 B
YAML

jobs:
build:
runs-on: windows-host # Must match runner's label in config.yaml
container:
image: mcr.microsoft.com/windows/servercore:ltsc2019
options: --isolation=process --entrypoint cmd /c "timeout 5" # Test container startup
steps:
- name: Debug container
run: echo "Container is alive!"
- name: Install Rust
if: success()
run: |
curl -sSf -o rustup-init.exe https://win.rustup.rs/
.\rustup-init.exe -y --default-toolchain stable
refreshenv
rustup component add rust-src
- name: Build
if: success()
run: cargo build --release