Remove transitive pinning of global_roots_table #544
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 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 }} |