Skip to content

fix: reject @locals values that overflow word-alignment #5926

fix: reject @locals values that overflow word-alignment

fix: reject @locals values that overflow word-alignment #5926

Workflow file for this run

# Runs build related jobs.
name: build
permissions:
contents: read
on:
push:
branches: [main, next]
pull_request:
types: [opened, reopened, synchronize]
jobs:
no-std:
name: Build for no-std
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v4
- name: Cleanup large tools for build space
uses: ./.github/actions/cleanup-runner
- name: Build for no-std
run: |
rustup update --no-self-update ${{ matrix.toolchain }}
rustup +${{ matrix.toolchain }} target add wasm32-unknown-unknown
rustup default ${{ matrix.toolchain }}
make build-no-std