Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- 'main'
- 'release-*'
tags: '*'
tags: ['*']
concurrency:
# Skip intermediate builds: all builds except for builds on the `main` or `release-*` branches
# Cancel intermediate builds: only pull request builds
Expand All @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
julia-version:
- 'nightly'
- '~1.12.0-0'
os:
- ubuntu-latest
- windows-latest
Expand All @@ -29,10 +29,10 @@ jobs:
include:
- os: macOS-latest
julia-arch: aarch64
julia-version: 'nightly'
julia-version: '~1.12.0-0'
- os: macOS-13
julia-arch: x64
julia-version: 'nightly'
julia-version: '~1.12.0-0'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand All @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
julia-version:
- 'nightly'
- '~1.12.0-0'
os:
- ubuntu-latest
julia-arch:
Expand All @@ -78,7 +78,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: 'nightly'
version: '~1.12.0-0'
- name: Generate docs
run: |
julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.develop(PackageSpec(path = pwd()))'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Pkg = "<0.0.1, 1"
Printf = "<0.0.1, 1"
Random = "<0.0.1, 1"
Serialization = "<0.0.1, 1"
SuiteSparse_jll = "7.10.1"
SuiteSparse_jll = "7.8.3"
Test = "<0.0.1, 1"
julia = "1.11"

Expand Down
2 changes: 1 addition & 1 deletion src/solvers/cholmod.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import SparseArrays: AbstractSparseMatrix, SparseMatrixCSC, indtype, sparse, spz
import ..increment, ..increment!

using ..LibSuiteSparse
import ..LibSuiteSparse: TRUE, FALSE, CHOLMOD_INT, CHOLMOD_LONG
import ..LibSuiteSparse: TRUE, FALSE, CHOLMOD_INT, CHOLMOD_LONG, libsuitesparseconfig

# # itype defines the types of integer used:
# CHOLMOD_INT, # all integer arrays are int
Expand Down
Loading