-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 886 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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-13
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@v3
with:
arch: aarch64
platform: apple-darwin
sha384: 230272fa57843a024759187e5606859755250e612a288122ea91ce54f5e602186dfc8cd06c9e895c7d66954b16c9f92
- name: Verify that buck2 binary is available
run: |
/usr/bin/buck2 --version