Skip to content

ci: build for 32 and 64-bit windows; build for intel and arm-based macos #9

ci: build for 32 and 64-bit windows; build for intel and arm-based macos

ci: build for 32 and 64-bit windows; build for intel and arm-based macos #9

Workflow file for this run

name: Build
on:
push:
workflow_call:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
matrix:
settings:
# MacOS (Intel)
- platform: 'macos-latest'
target: 'x86_64-apple-darwin'
# MacOS (Apple Silicon)
- platform: 'macos-latest'
target: 'aarch64-apple-darwin'
# 64-bit Linux
- platform: 'ubuntu-20.04'
target: 'x86_64-unknown-linux-gnu'
# 64-bit Windows
- platform: 'windows-latest'
target: 'x86_64-pc-windows-msvc'
# 32-bit Windows
- platform: 'windows-latest'
target: 'i686-pc-windows-msvc'
runs-on: ${{ matrix.settings.platform }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.14.1
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: |
rustup toolchain install stable --profile minimal

Check failure on line 44 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 44
rustup target add ${{ matrix.settings.target }}
- uses: swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894
with:
workspaces: ./packages/desktop
- name: Install dependencies (Ubuntu)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- run: pnpm i
- run: |
pnpm build --filter zebar --filter @zebar/client
pnpm build --filter @zebar/desktop -- -- --target ${{ matrix.settings.target }}
- uses: actions/upload-artifact@v3
with:
name: bundle-${{ matrix.settings.target }}
path: ${{ github.workspace }}/packages/desktop/target/release/bundle