.github: add windows release workflow for executor #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build Windows Github Release Artifacts" | |
on: | |
# Development only | |
# TODO: remove this | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
inputs: | |
release_branch: | |
description: "Git branch to checkout." | |
required: true | |
default: "master" | |
type: string | |
version_tag: | |
description: "Version to tag release artifacts." | |
required: true | |
type: string | |
workflow_call: | |
inputs: | |
release_branch: | |
description: "Git branch to checkout." | |
required: true | |
type: string | |
version_tag: | |
description: "Version to tag release artifacts." | |
required: true | |
type: string | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.release_branch }} | |
# We need to fetch git tags to obtain the latest version tag to report | |
# the version of the running binary. | |
fetch-depth: 0 | |
- name: Install bazelisk | |
run: | | |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-windows-amd64.exe" | |
mkdir -p "${GITHUB_WORKSPACE}\bin\" | |
mv bazelisk-windows-amd64.exe "${GITHUB_WORKSPACE}\bin\bazel.exe" | |
- name: Build and Upload Artifacts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
${env:GITHUB_WORKSPACE}\bin\bazel.exe build --config=release --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }} //enterprise/server/cmd/executor:executor | |
# cp bazel-bin/server/cmd/**/**/buildbuddy buildbuddy-linux-amd64 | |
# cp bazel-bin/enterprise/server/cmd/**/**/buildbuddy buildbuddy-enterprise-linux-amd64 | |
# cp bazel-bin/enterprise/server/cmd/**/**/executor executor-enterprise-linux-amd64 | |
# gh release upload ${{ inputs.version_tag }} buildbuddy-linux-amd64 buildbuddy-enterprise-linux-amd64 executor-enterprise-linux-amd64 --clobber |