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 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=dbg | |
- name: Test | |
run: | | |
file bazel-bin/main/sorbet | |
bazel-bin/main/sorbet -e "42 + 'hello'" | |
# TODO: upload to internal package manager |