-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shayne Fletcher
committed
Jan 18, 2024
1 parent
bc752d9
commit 5964578
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Buck build and test | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
buck-build-and-test: | ||
name: ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu, macos] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: Swatinem/rust-cache@v2 | ||
- run: sudo apt-get update && sudo apt-get install opam | ||
if: matrix.os == 'ubuntu' | ||
- run: brew install opam | ||
if: matrix.os == 'macos' | ||
- run: | | ||
wget https://github.com/facebook/buck2/releases/download/latest/buck2-x86_64-unknown-linux-gnu.zst | ||
zstd -d buck2-x86_64-unknown-linux-gnu.zst -o buck2 | ||
chmod +x buck2 | ||
sudo ln -s $(pwd)/buck2 /usr/local/bin/buck2 | ||
if: matrix.os == 'ubuntu' | ||
- run: | | ||
wget https://github.com/facebook/buck2/releases/download/latest/buck2-x86_64-apple-darwin.zst | ||
zstd -d buck2-x86_64-apple-darwin.zst -o buck2 | ||
chmod +x buck2 | ||
sudo ln -s $(pwd)/buck2 /usr/local/bin/buck2 | ||
if: matrix.os == 'macos' | ||
- run: | | ||
opam init --compiler=5.1.1 --disable-sandboxing -y | ||
opam env | sed "s/ export .*//g" | sed "s/'//g" | sed "s/\;//g" >> $GITHUB_ENV | ||
- run: ./ocaml-setup.sh | ||
- run: cargo install --git https://github.com/facebookincubator/reindeer.git reindeer --force | ||
- run: reindeer --third-party-dir shim/third-party/rust buckify | ||
- run: buck2 build shim//third-party/... -v 2 | ||
- run: buck2 build root//... -v 2 |
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