Protostellar initial commit #6
Workflow file for this run
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 | |
on: | |
pull_request: # trigger on pull requests | |
push: | |
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
target: [ x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu, x86_64-apple-darwin, aarch64-apple-darwin, x86_64-pc-windows-msvc ] | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-apple-darwin | |
os: macos-latest | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Rust toolchain and cache | |
uses: actions-rust-lang/[email protected] | |
with: | |
target: ${{ matrix.target }} | |
- name: Install aarch64-linux gcc | |
run: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu -y | |
if: matrix.target == 'aarch64-unknown-linux-gnu' | |
- name: Install protoc | |
run: sudo apt-get install protobuf-compiler -y | |
if: matrix.os == 'ubuntu-latest' | |
- name: Install protoc | |
run: brew install protobuf | |
if: matrix.os == 'macos-latest' | |
- name: Install protoc | |
run: choco install protoc -y | |
if: matrix.os == 'windows-latest' | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
env: | |
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: 'aarch64-linux-gnu-gcc' | |
with: | |
command: build | |
args: --verbose --target ${{ matrix.target }} | |
if: matrix.os == 'ubuntu-latest' | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --verbose --target ${{ matrix.target }} | |
if: matrix.os == 'macos-latest' | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --verbose --target ${{ matrix.target }} | |
env: | |
VCPKGRS_DYNAMIC: 1 | |
if: matrix.os == 'windows-latest' |