Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
Morriar committed Aug 30, 2024
1 parent 8f735a7 commit 37ab460
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Sorbet ARM64

on:
push:
workflow_dispatch: # Allows manual triggering

jobs:
release:
runs-on: macos-latest-xlarge
steps:

- name: Checkout code
uses: actions/checkout@v4

- name: Install packages
run: brew install autoconf coreutils parallel

- name: Build
run: ./bazel build //main:sorbet --config=release-mac

- name: Test
run: |
file bazel-bin/main/sorbet
bazel-bin/main/sorbet -e "42 + 'hello'"
# TODO: upload to internal package manager

0 comments on commit 37ab460

Please sign in to comment.