fix: shadow mapping must always allocate new registers #12
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: 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 }} |