feat(rivetc+rivet): implement boxed pointers (^T
)
#1057
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: Library Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: ['lib/**.ri', 'rivetc/**.py'] | |
pull_request: | |
paths: ['lib/**.ri', 'rivetc/**.py'] | |
types: [opened, synchronize] | |
jobs: | |
ubuntu-clang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run core library tests | |
run: | | |
python3 rivetc -C clang -t lib/core | |
- name: Run standard library tests | |
run: | | |
python3 rivetc -C clang -t lib/std | |
- name: Run Rivet self-hosted tests | |
run: | | |
python3 rivetc -C clang -t lib/rivet | |
ubuntu-gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run core library tests | |
run: | | |
python3 rivetc -C gcc -t lib/core | |
- name: Run standard library tests | |
run: | | |
python3 rivetc -C gcc -t lib/std | |
- name: Run Rivet self-hosted tests | |
run: | | |
python3 rivetc -C gcc -t lib/rivet |