Skip to content

Track downloaded operations in ps_buckets #152

Track downloaded operations in ps_buckets

Track downloaded operations in ps_buckets #152

Workflow file for this run

on:
push:
pull_request:
name: "macos"
jobs:
build_macOS_aarch64:
name: Building macOS aarch64
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2024-05-18
components: rust-src
- name: Build binary
run: ./tool/build_macos.sh aarch64
build_macOS_x64:
name: Building macOS x64
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
runs-on: macos-14
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2024-05-18
components: rust-src
- name: Build binary
run: ./tool/build_macos.sh x64