JuliaLinearAlgebra / libblastrampoline

Using PLT trampolines to provide a BLAS and LAPACK demuxing library.
MIT License
66 stars 17 forks source link

[CirrusCI] Run FreeBSD tests with Julia 1; add more platforms #99

Closed giordano closed 1 year ago

giordano commented 1 year ago

dgemmt is failing also here on FreeBSD. CC: @amontoison

amontoison commented 1 year ago

gemmt should be only tested with MKL. MKL is not available on FreeBSD (we don't have a MKL_jll for this platform).

amontoison commented 1 year ago

@giordano The error with FreeBSD is related to dgemm and not dgemmt, I am wrong?

giordano commented 1 year ago

Yeah, too similar names. @ararslan how to install gmake? The make available doesn't seem to like our makefiles.

ararslan commented 1 year ago

how to install gmake?

pkg update && pkg install -y gmake

The make available doesn't seem to like our makefiles.

Yeah, make on BSD is BSD Make, which is incompatible with GNU Make.

ararslan commented 1 year ago

Looks like you figured it out on your own 🙂

giordano commented 1 year ago

Yay, it's working! I'm going to merge this, to have CI working on FreeBSD and Musl Linux.