Bugfix for register spilling #51
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: Build and Test | |
| on: | |
| - push | |
| - pull_request | |
| permissions: read-all | |
| jobs: | |
| build: | |
| env: | |
| OPAMROOTISOK: '1' | |
| strategy: | |
| matrix: | |
| os: | |
| - riscv-builders | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout tree | |
| uses: actions/checkout@v4 | |
| - run: sudo apt install -yq opam | |
| - run: | | |
| opam init --disable-sandboxing -y | |
| opam switch -y create 4.14.2 | |
| opam install -y dune | |
| - run: | | |
| eval $(opam env) | |
| dune build -p moonbit-lang | |
| - run: ./_build/install/default/bin/moonc -v |