WIP: Add jit_compile/1, very basic JIT2 #2
Workflow file for this run
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: Test JIT | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test-jit: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: ./.github/actions/setup-rust | |
with: | |
rust-version: nightly | |
targets: x86_64-unknown-linux-gnu | |
- name: Test with JIT | |
run: cargo +nightly test --features jit |