Skip to content

Add macOS support.

Add macOS support. #19

Workflow file for this run

on: [push]
jobs:
buck2_linux:
runs-on: ubuntu-latest
name: A job to try our buck2 composite action on ubuntu.
steps:
- uses: actions/checkout@v4
- name: Use buck2 composite action
uses: zadlg/buck2-github-composite-action@v1
- name: Verify that buck2 binary is available
run: |
/usr/bin/buck2 --version
buck2_macos:
runs-on: macOS
name: A job to try our buck2 composite action on macOS.
steps:
- uses: actions/checkout@v4
- name: Use buck2 composite action
uses: zadlg/buck2-github-composite-action@v1
with:
arch: aarch64
platform: apple-darwin
- name: Verify that buck2 binary is available
run: |
/usr/bin/buck2 --version