Skip to content

dont rewrite placer rules on init #275

dont rewrite placer rules on init

dont rewrite placer rules on init #275

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
target: [
{ runner: mac, os: macos },
{ runner: ubuntu-latest, os: linux },
{ runner: windows-latest, os: windows },
# { runner: pi, os: raspberry },
{ runner: mac, os: ios },
# { runner: ubuntu-latest, os: android }
]
runs-on: ${{ matrix.target.runner }}
steps:
- uses: actions/checkout@v4
with:
token: ${{secrets.GITHUB_TOKEN}}
submodules: recursive
- name: Build
if: ${{ matrix.target.os != 'windows' }}
run: ./build/build.sh ${{ matrix.target.os }}
- name: Build windows
if: ${{ matrix.target.os == 'windows' }}
run: py build/build.py
- name: Test
if: ${{ matrix.target.os != 'ios' && matrix.target.os != 'android' }}
run: make test