2023-03-02 23:42:35 +02:00
|
|
|
# Copyright 2023 Uber Technologies, Inc.
|
|
|
|
# Licensed under the Apache License, Version 2.0
|
|
|
|
|
2022-06-02 08:46:16 +03:00
|
|
|
load("@bazel-zig-cc//rules:platform.bzl", "platform_binary", "platform_test")
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "winver",
|
|
|
|
srcs = ["main.c"],
|
|
|
|
tags = ["manual"],
|
|
|
|
)
|
|
|
|
|
2023-03-06 17:32:48 +02:00
|
|
|
# TODO(motiejus): bring back windows tests, not only builds
|
|
|
|
#platform_test(
|
|
|
|
# name = "winver_windows_amd64",
|
|
|
|
# src = "winver",
|
|
|
|
# platform = "//platform:windows_amd64",
|
|
|
|
# run_under = "wine64-stable",
|
|
|
|
# tags = ["no-sandbox"],
|
|
|
|
#)
|
|
|
|
|
|
|
|
platform_binary(
|
2022-06-02 08:46:16 +03:00
|
|
|
name = "winver_windows_amd64",
|
|
|
|
src = "winver",
|
|
|
|
platform = "//platform:windows_amd64",
|
|
|
|
)
|
|
|
|
|
|
|
|
platform_binary(
|
|
|
|
name = "winver_windows_arm64",
|
|
|
|
src = "winver",
|
|
|
|
platform = "//platform:windows_arm64",
|
|
|
|
)
|