Files
rippled/.github/scripts/strategy-matrix/windows.py

10 lines
180 B
Python
Executable File

from helpers.defs import Distro, Spec
from helpers.enums import Arch
DISTROS = [
Distro(
os_name="windows",
specs=[Spec(archs=[Arch.WINDOWS_AMD64])],
),
]