Skip to content

Add linux-arm64 release binaries #1

Add linux-arm64 release binaries

Add linux-arm64 release binaries #1

name: "Build Linux Github Release Artifacts"
on:
# DO NOT SUBMIT
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: ubuntu-22.04-16cpu-arm64
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# DO NOT SUBMIT
ref: bb_release_20240214_182900
# 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: Build and Upload Artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
uname -a
bazelisk build --config=release --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_ORG_API_KEY }} //server/cmd/buildbuddy:buildbuddy //enterprise/server/cmd/server:buildbuddy //enterprise/server/cmd/executor:executor
cp bazel-bin/server/cmd/**/**/buildbuddy buildbuddy-linux-arm64
cp bazel-bin/enterprise/server/cmd/**/**/buildbuddy buildbuddy-enterprise-linux-arm64
cp bazel-bin/enterprise/server/cmd/**/**/executor executor-enterprise-linux-arm64
# DO NOT SUBMIT
# gh release upload v2.40.1 buildbuddy-linux-arm64 buildbuddy-enterprise-linux-arm64 executor-enterprise-linux-arm64 --clobber
# gh release upload ${{ inputs.version_tag }} buildbuddy-linux-arm64 buildbuddy-enterprise-linux-arm64 executor-enterprise-linux-arm64 --clobber