feat(rivetc+rivet): implement boxed pointers (^T
)
#414
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: Self-hosted Compiler | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: ['lib/**.ri', 'rivetc/**.py', 'cmd/**.ri'] | |
pull_request: | |
paths: ['lib/**.ri', 'rivetc/**.py', 'cmd/**.ri'] | |
types: [opened, synchronize] | |
jobs: | |
ubuntu-clang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile self-hosted compiler | |
run: | | |
python3 rivetc -C clang -o rivet cmd/ | |
./rivet version | |
./rivet build cmd/ | |
./rivet test tests/valid | |
ubuntu-gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile self-hosted compiler | |
run: | | |
python3 rivetc -C gcc -o rivet cmd/ | |
./rivet version | |
./rivet build cmd/ | |
./rivet test tests/valid |