codegen bug fixes: MIR enabled, sema type resolution, undef audit #54
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: selfhost (macOS) | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install LLVM | |
| run: brew install llvm | |
| - name: Export LLVM_PREFIX | |
| run: echo "LLVM_PREFIX=$(brew --prefix llvm)" >> "$GITHUB_ENV" | |
| - name: Build stage2 self-hosted compiler | |
| run: make stage2 | |
| - name: Stage2 test suites | |
| run: make test-stage2 |