Skip to content

fix: shadow mapping must always allocate new registers #12

fix: shadow mapping must always allocate new registers

fix: shadow mapping must always allocate new registers #12

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v1
with:
version: master
- name: Run tests
run: zig build test -Djava_compat
- name: Build playground
run: zig build playground -Doptimize=ReleaseFast
- name: Deploy to Vercel
if: success() && github.ref == 'refs/heads/main'
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
run: |
npm install -g vercel
vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }}