Skip to content

Commit

Permalink
Add 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 84599df
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 7 deletions.
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
64 changes: 64 additions & 0 deletions .github/workflows/build-linux-arm64-github-release-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: "Build Linux arm64 Github Release Artifacts"

on:
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

# GitHub's arm64 runners do not have the same pre-installed software as
# the amd64 runners so we have to install a few things here.
- name: Install bazelisk
run: |
curl -L --output /tmp/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/v1.17.0/bazelisk-linux-arm64
chmod +x /tmp/bazelisk
sudo mv /tmp/bazelisk /usr/bin/bazelisk
- name: Install GitHub CLI
run: |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
&& sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
&& sudo apt update \
&& sudo apt install gh -y
- name: Build and Upload Artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
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
gh release upload ${{ inputs.version_tag }} buildbuddy-linux-arm64 buildbuddy-enterprise-linux-arm64 executor-enterprise-linux-arm64 --clobber
13 changes: 11 additions & 2 deletions .github/workflows/create-github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,17 @@ jobs:
prerelease: false
draft: true

build-linux-artifacts:
uses: ./.github/workflows/build-linux-github-release-artifacts.yaml
build-linux-amd64-artifacts:
uses: ./.github/workflows/build-linux-amd64-github-release-artifacts.yaml
if: "!contains(github.event.head_commit.message, 'release skip')"
needs: create-release
with:
release_branch: ${{ github.ref }}
version_tag: ${{ github.ref_name }}
secrets: inherit

build-linux-arm64-artifacts:
uses: ./.github/workflows/build-linux-arm64-github-release-artifacts.yaml
if: "!contains(github.event.head_commit.message, 'release skip')"
needs: create-release
with:
Expand Down
13 changes: 9 additions & 4 deletions tools/check_release_assets_uploaded.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@
import time

EXPECTED_ASSETS = [
"executor-enterprise-darwin-arm64",
"buildbuddy-enterprise-darwin-amd64",
"buildbuddy-enterprise-linux-amd64",
"buildbuddy-enterprise-linux-arm64",

"buildbuddy-darwin-amd64"
"buildbuddy-linux-amd64",
"executor-enterprise-linux-amd64",
"buildbuddy-enterprise-darwin-amd64",
"buildbuddy-linux-arm64",

"executor-enterprise-darwin-amd64",
"executor-enterprise-darwin-arm64",
"executor-enterprise-linux-amd64",
"executor-enterprise-linux-arm64",
"executor-enterprise-windows-amd64-beta.exe",
"buildbuddy-darwin-amd64"
]

def die(message):
Expand Down

0 comments on commit 84599df

Please sign in to comment.