Skip to content

Commit

Permalink
[ci] Add GitHub workflow for unboxing and for SSA interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
titzer committed Aug 28, 2024
1 parent 34c2dfd commit b22952c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,20 @@ jobs:
uses: actions/checkout@v4
- name: Build and Test
run: bash ./ci/linux/build-test-x86_64.sh -O2
x86-64-linux-unbox:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test
run: bash ./ci/linux/build-test-x86_64.sh -unbox-variants
x86-64-linux-ssa-int:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test
run: bash ./ci/linux/build-test-x86_64.sh -ssa-int
# x86-64-linux-O3:
# runs-on: ubuntu-latest
# steps:
Expand All @@ -71,6 +85,13 @@ jobs:
uses: actions/checkout@v4
- name: Build and Test
run: bash ./ci/jvm/build-test-jvm.sh
jvm-unbox:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test
run: bash ./ci/jvm/build-test-jvm.sh -unbox-variants
wasm:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit b22952c

Please sign in to comment.