Skip to content

Commit 2600f22

Browse files
committed
Don't build //... for Windows
This no longer works, because it depends on a C++ toolchain.
1 parent ca1c61b commit 2600f22

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@
333333
},
334334
{
335335
"name": "windows_amd64: build and test",
336-
"run": "bazel build --platforms=@rules_go//go/toolchain:windows_amd64 //..."
336+
"run": "bazel build --platforms=@rules_go//go/toolchain:windows_amd64 //cmd/bb_copy //cmd/bb_replicator //cmd/bb_storage"
337337
},
338338
{
339339
"name": "windows_amd64: copy bb_copy",

.github/workflows/pull-requests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
},
8282
{
8383
"name": "windows_amd64: build and test",
84-
"run": "bazel build --platforms=@rules_go//go/toolchain:windows_amd64 //..."
84+
"run": "bazel build --platforms=@rules_go//go/toolchain:windows_amd64 //cmd/bb_copy //cmd/bb_replicator //cmd/bb_storage"
8585
}
8686
]
8787
}

tools/github_workflows/workflows_template.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
{
4949
name: 'windows_amd64',
5050
buildAndTestCommand: 'build',
51-
buildJustBinaries: false,
51+
buildJustBinaries: true,
5252
extension: '.exe',
5353
},
5454
],

0 commit comments

Comments
 (0)