fix Vec type mismatch crash, runtime link root, prelude verification #45
This file contains hidden or 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: | |
| pull_request: | |
| jobs: | |
| selfhost-macos: | |
| name: bootstrap + selfhost (macOS) | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Zig | |
| uses: goto-bus-stop/setup-zig@v2 | |
| with: | |
| version: 0.15.2 | |
| - name: Install LLVM | |
| run: brew install llvm | |
| - name: Export LLVM_PREFIX | |
| run: echo "LLVM_PREFIX=$(brew --prefix llvm)" >> "$GITHUB_ENV" | |
| - name: Build bootstrap compiler | |
| run: make bootstrap | |
| - name: Bootstrap test suites | |
| run: make test-bootstrap | |
| - name: Build stage2 self-hosted compiler | |
| run: make stage2 | |
| - name: Stage2 test suites | |
| run: make test-stage2 |