Skip to content

Commit fa87b27

Browse files
authored
don't run Turing integration test on 1.12.0 (#1069)
1 parent d772913 commit fa87b27

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/IntegrationTest.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,29 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v5
25+
2526
- uses: julia-actions/setup-julia@v2
2627
with:
2728
version: 1
29+
2830
- uses: julia-actions/julia-buildpkg@v1
31+
2932
- name: Clone Downstream
3033
uses: actions/checkout@v5
3134
with:
3235
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
3336
path: downstream
37+
38+
- name: Determine Julia version
39+
shell: bash
40+
id: julia-version
41+
run: |
42+
echo "julia=$(julia --version | cut -d' ' -f3)" >> $GITHUB_OUTPUT
43+
3444
- name: Load this and run the downstream tests
3545
shell: julia --color=yes --project=downstream {0}
46+
# Don't test Turing.jl on 1.12.0, it's broken because of Libtask
47+
if: ${{ !(steps.julia-version.outputs.julia == '1.12.0' && matrix.package.repo == 'Turing.jl') }}
3648
run: |
3749
using Pkg
3850
try

0 commit comments

Comments
 (0)