this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19293 from kit-ty-kate/fix-14

owl.1.0.0: Disable the tests (non-deterministic)

authored by

Marcello Seri and committed by
GitHub
5b44cdb5 cdacbab0

+8 -6
+1
packages/conf-openblas/conf-openblas.0.2.1/files/test.c
··· 1 + #define _GNU_SOURCE 1 2 #include <cblas.h> 2 3 #include <lapacke.h> 3 4
+1 -1
packages/conf-openblas/conf-openblas.0.2.1/opam
··· 38 38 synopsis: "Virtual package to install OpenBLAS and LAPACKE" 39 39 description: 40 40 "The package prepares OpenBLAS (CBLAS) and LAPACKE backend for Owl (OCaml numerical library). It can only be installed if OpenBLAS and LAPACKE are installed on the system." 41 - extra-files: ["test.c" "md5=dcf8ee02542457dde43e1e4917897416"] 41 + extra-files: ["test.c" "md5=8eb3463bce56366f0506721ca5c4e29c"] 42 42 flags: conf
+3 -2
packages/owl/owl.0.9.0/opam
··· 18 18 build: [ 19 19 [ "dune" "subst" ] {dev} 20 20 [ "dune" "build" "-p" name "-j" jobs ] 21 - [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 21 + # [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} # non-deterministic 22 22 ] 23 23 24 24 depends: [ 25 25 "ocaml" {>= "4.10.0"} 26 - "alcotest" {with-test} 26 + # "alcotest" {with-test} 27 27 "base" {build & < "v0.15"} 28 28 "base-bigarray" 29 29 "conf-openblas" {>= "0.2.0"} ··· 36 36 "stdlib-shims" 37 37 "npy" 38 38 ] 39 + available: arch != "arm64" & arch != "arm32" & arch != "s390x" 39 40 url { 40 41 src: "https://github.com/owlbarn/owl/releases/download/0.9.0/owl-0.9.0.tbz" 41 42 checksum: [
+3 -3
packages/owl/owl.1.0.0/opam
··· 18 18 build: [ 19 19 [ "dune" "subst" ] {dev} 20 20 [ "dune" "build" "-p" name "-j" jobs ] 21 - [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 21 + # [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} # Non-deterministic 22 22 ] 23 23 24 24 depends: [ 25 25 "ocaml" {>= "4.10.0"} 26 - "alcotest" {with-test} 26 + # "alcotest" {with-test} 27 27 "base" {build} 28 28 "base-bigarray" 29 29 "conf-openblas" {>= "0.2.1"} ··· 35 35 "stdio" {build} 36 36 "npy" 37 37 ] 38 - available: arch != "arm64" & arch != "arm32" 38 + available: arch != "arm64" & arch != "arm32" & arch != "s390x" 39 39 x-commit-hash: "f164864baf68f94a19a09b19ed377db433d7aa2a" 40 40 url { 41 41 src: "https://github.com/owlbarn/owl/releases/download/1.0.0/owl-1.0.0.tbz"