Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
Disable windows build while I fix disk_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerwilliams committed Nov 30, 2020
1 parent 0127322 commit e3037b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def build_sidecar_artifacts(repo_name, new_version):
"darwin": "sidecar-darwin-amd64",
"linux": "sidecar-linux-amd64",
"linux-arm64": "sidecar-linux-arm64",
"windows": "sidecar-windows-amd64.exe",
# "windows": "sidecar-windows-amd64.exe",
}
targets = ["cmd/sidecar:sidecar-" + arch for arch in arch_outputs]
sidecar_build_cmd = 'bazel build -c opt --stamp --define version=sidecar-%s --define release=true %s' % (new_version, " ".join(targets))
Expand All @@ -123,7 +123,7 @@ def build_cli_artifacts(repo_name, new_version):
"darwin": "buildbuddy-darwin-amd64",
"linux": "buildbuddy-linux-amd64",
"linux-arm64": "buildbuddy-linux-arm64",
"windows": "buildbuddy-windows-amd64.exe",
# "windows": "buildbuddy-windows-amd64.exe",
}
targets = ["cmd/buildbuddy:buildbuddy-" + arch for arch in arch_outputs]
buildbuddy_build_cmd = 'bazel build -c opt --stamp --define version=buildbuddy-%s --define release=true %s' % (new_version, " ".join(targets))
Expand Down

0 comments on commit e3037b9

Please sign in to comment.