Skip to content

Commit 1d037e0

Browse files
committed
exclude nightly and pardiso on mac from CI
1 parent ce0646b commit 1d037e0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version:
1818
- '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
1919
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
20-
- 'nightly'
20+
# - 'nightly' # currently fails for LinearSolve
2121
os:
2222
- ubuntu-latest
2323
- macos-latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Any linear algebra method on `ExtendableSparseMatrix` starts with a `flush!` met
2020

2121
## Caveat
2222

23-
This package assumes that a $ m \times n $ matrix is sparse if *each* row and *each* column have less than $ C $ entries with
24-
$ C << n$ and $C <<m $ . Adding a full matrix row will be a performance hit.
23+
This package assumes that a $m \times n$ matrix is sparse if *each* row and *each* column have less than $C$ entries with
24+
$C << n$ and $C <<m$ . Adding a full matrix row will be a performance hit.
2525

2626

2727
## Working with ForwardDiff

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,14 +380,15 @@ end
380380
end
381381

382382
@testset "mkl-pardiso" begin
383+
if !sys.isapple
383384
@test test_lu1(10,10,10,lufac=MKLPardisoLU())
384385
@test test_lu1(25,40,1,lufac=MKLPardisoLU())
385386
@test test_lu1(1000,1,1,lufac=MKLPardisoLU())
386387

387388
@test test_lu2(10,10,10,lufac=MKLPardisoLU())
388389
@test test_lu2(25,40,1,lufac=MKLPardisoLU())
389390
@test test_lu2(1000,1,1,lufac=MKLPardisoLU())
390-
391+
end
391392
# @test test_lu2(10,10,10,lufac=MKLPardisoLU(mtype=2))
392393
# @test test_lu2(25,40,1,lufac=MKLPardisoLU(mtype=2))
393394
# @test test_lu2(1000,1,1,lufac=MKLPardisoLU(mtype=2))

0 commit comments

Comments
 (0)