9 lines
355 B
TOML
9 lines
355 B
TOML
|
|
# Linux→Windows end-to-end:
|
||
|
|
# crafter-build cross-compiles main.cpp to x86_64-w64-mingw32 (.exe) and the
|
||
|
|
# runner derivation wraps it in `wine`. Replaces the old WindowsViaSsh test,
|
||
|
|
# which required a reachable Windows VM and an ssh + cmd.exe shell chain.
|
||
|
|
target = "x86_64-w64-mingw32"
|
||
|
|
requires = [
|
||
|
|
"tool:wine",
|
||
|
|
"tool:x86_64-w64-mingw32-g++",
|
||
|
|
]
|