Skip to content

Commit 2d2a3bb

Browse files
committed
do not run BlossomV tests on ARM Macs (not supported)
1 parent c6dc48d commit 2d2a3bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using Cbc
55
using JuMP
66
using LinearAlgebra: I
77

8-
if !Sys.iswindows()
8+
if !Sys.iswindows() && Sys.ARCH == :x86_64
99
using Pkg
1010
Pkg.add("BlossomV")
1111
import BlossomV # to test the extension
@@ -266,7 +266,7 @@ end
266266

267267
@testset "minimum_weight_perfect_matching" begin
268268
algos = Any[LEMONMWPMAlgorithm()]
269-
if !Sys.iswindows()
269+
if !Sys.iswindows() && Sys.ARCH == :x86_64
270270
push!(algos, BlossomVAlgorithm())
271271
end
272272
for algorithm in algos

0 commit comments

Comments
 (0)