Skip to content

Commit 415bc9e

Browse files
authored
[release-1.12] Run CI with Julia 1.12 (#635)
Run CI with Julia 1.12 on the release-1.12 branch and backport #625.
2 parents d1b0cd0 + d921308 commit 415bc9e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
- 'release-*'
8-
tags: '*'
8+
tags: ['*']
99
concurrency:
1010
# Skip intermediate builds: all builds except for builds on the `main` or `release-*` branches
1111
# Cancel intermediate builds: only pull request builds
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
julia-version:
22-
- 'nightly'
22+
- '~1.12.0-0'
2323
os:
2424
- ubuntu-latest
2525
- windows-latest
@@ -29,10 +29,10 @@ jobs:
2929
include:
3030
- os: macOS-latest
3131
julia-arch: aarch64
32-
julia-version: 'nightly'
32+
julia-version: '~1.12.0-0'
3333
- os: macOS-13
3434
julia-arch: x64
35-
julia-version: 'nightly'
35+
julia-version: '~1.12.0-0'
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: julia-actions/setup-julia@v2
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
matrix:
5858
julia-version:
59-
- 'nightly'
59+
- '~1.12.0-0'
6060
os:
6161
- ubuntu-latest
6262
julia-arch:
@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/checkout@v4
7979
- uses: julia-actions/setup-julia@v2
8080
with:
81-
version: 'nightly'
81+
version: '~1.12.0-0'
8282
- name: Generate docs
8383
run: |
8484
julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.develop(PackageSpec(path = pwd()))'

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Pkg = "<0.0.1, 1"
1919
Printf = "<0.0.1, 1"
2020
Random = "<0.0.1, 1"
2121
Serialization = "<0.0.1, 1"
22-
SuiteSparse_jll = "7.10.1"
22+
SuiteSparse_jll = "7.8.3"
2323
Test = "<0.0.1, 1"
2424
julia = "1.11"
2525

src/solvers/cholmod.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import SparseArrays: AbstractSparseMatrix, SparseMatrixCSC, indtype, sparse, spz
3737
import ..increment, ..increment!
3838

3939
using ..LibSuiteSparse
40-
import ..LibSuiteSparse: TRUE, FALSE, CHOLMOD_INT, CHOLMOD_LONG
40+
import ..LibSuiteSparse: TRUE, FALSE, CHOLMOD_INT, CHOLMOD_LONG, libsuitesparseconfig
4141

4242
# # itype defines the types of integer used:
4343
# CHOLMOD_INT, # all integer arrays are int

0 commit comments

Comments
 (0)