Skip to content

Remove transitive pinning of global_roots_table #547

Remove transitive pinning of global_roots_table

Remove transitive pinning of global_roots_table #547

Workflow file for this run

name: Test Julia Binding
on:
pull_request:
branches:
- master
- v1.8.2\+RAI
- v1.9.2\+RAI
concurrency:
# Cancels pending runs when a PR gets updated.
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
binding-tests:
strategy:
fail-fast: false
matrix:
gc_plan: [Immix, StickyImmix]
moving: [Default, Non_Moving]
include:
# Also run Immix with stress copying to test copying for Julia.
- gc_plan: Immix
moving: Immix_Stress_Copying
uses: ./.github/workflows/binding-tests.yml
with:
gc_plan: ${{ matrix.gc_plan }}
moving: ${{ matrix.moving }}