Skip to content

Commit

Permalink
WIP linux-arm64 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bduffany committed Feb 21, 2024
1 parent 6756b50 commit 44bcfa1
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
61 changes: 61 additions & 0 deletions .github/workflows/build-linux-arm64-release-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: "Build Linux arm64 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: Install bazelisk
run: |
curl -L --output bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.17.0/bazelisk-linux-arm64
sudo mv bazelisk /usr/bin/bazelisk
- 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Build Linux Github Release Artifacts"
name: "Build Linux amd64 Github Release Artifacts"

on:
workflow_dispatch:
Expand Down

0 comments on commit 44bcfa1

Please sign in to comment.